Home | History | Annotate | Download | only in app

Lines Matching refs:dialog

20 import android.app.Dialog;
46 // Add an OnClickListener to show our selected dialog
67 Dialog dialog = new AppCompatDialog(this);
68 dialog.setTitle(R.string.dialog_title);
69 dialog.setContentView(R.layout.dialog_content);
70 dialog.show();
74 Dialog dialog = new AppCompatDialog(this);
75 dialog.setTitle(R.string.dialog_title);
76 dialog.setContentView(R.layout.dialog_content_buttons);
77 dialog.show();
98 Toast.makeText(getOwnerActivity(), "Dialog action selected: " + item.getTitle(),