A subclass of Dialog that can display one, two or three buttons.
I have a popup for downloading the audio instruction in my app. What I am trying to do is I …
android android-alertdialogI have this code to show a dialog with singlechoice(radio) options. AlertDialog ad = new AlertDialog.Builder(this) .setCancelable(false) .…
android android-alertdialogI want the DialogFragment to return a value to me that was entered in editQuantity when dismissed. But i am …
android android-alertdialogI am using an AlertDialog.Builder to display a dialog to prompt the user to enter a password, I then …
android android-edittext android-alertdialogI want to show an AlertDialog with one option that might change on every request. So for example at one …
java android android-alertdialogI have AlertDialog with Positive and Negative buttons. In AlertDialog layout I have EditText and two Buttons (btnAdd1, btnAdd2). I …
android button layout dialog android-alertdialogI'd like to make a dialog fragment that asks "Are you sure?" with a "yes/no" reply. I've looked at …
android dialog android-fragments android-alertdialogI'm trying to make a custom android dialog with rounded corners. My current attempts have given me this result. As …
android android-layout dialog android-alertdialog transparentI haven't been able to set a Single Choice list, or a Multiple Choice List inside an AlertDialog. I tried …
android android-alertdialogThe setView() method of the AlertDialog class allows one to specify a custom view for the dialog box. Are there …
android android-alertdialog android-custom-view