Home | History | Annotate | Download | only in app

Lines Matching refs:dialog

29  * This demonstrates idiomatic usage of Dialog with Theme.AppCompat.DayNight
40 AppCompatDialog dialog = new AppCompatDialog(this, R.style.Theme_AppCompat_DayNight_Dialog);
41 dialog.getDelegate().setLocalNightMode(AppCompatDelegate.MODE_NIGHT_NO);
42 dialog.setTitle(R.string.dialog_title);
43 dialog.setContentView(R.layout.dialog_content);
44 dialog.show();
48 AppCompatDialog dialog = new AppCompatDialog(this, R.style.Theme_AppCompat_DayNight_Dialog);
49 dialog.getDelegate().setLocalNightMode(AppCompatDelegate.MODE_NIGHT_YES);
50 dialog.setTitle(R.string.dialog_title);
51 dialog.setContentView(R.layout.dialog_content);
52 dialog.show();
56 AppCompatDialog dialog = new AppCompatDialog(this, R.style.Theme_AppCompat_DayNight_Dialog);
57 dialog.getDelegate().setLocalNightMode(AppCompatDelegate.MODE_NIGHT_AUTO);
58 dialog.setTitle(R.string.dialog_title);
59 dialog.setContentView(R.layout.dialog_content);
60 dialog.show();