Top "Android-alertdialog" questions

A subclass of Dialog that can display one, two or three buttons.

Change text color of alert dialog

I have a popup for downloading the audio instruction in my app. What I am trying to do is I …

android android-alertdialog
How to get selected item of a singlechoice Alert Dialog?

I have this code to show a dialog with singlechoice(radio) options. AlertDialog ad = new AlertDialog.Builder(this) .setCancelable(false) .…

android android-alertdialog
Get value from DialogFragment

I want the DialogFragment to return a value to me that was entered in editQuantity when dismissed. But i am …

android android-alertdialog
How can I get the results from an AlertDialog?

I am using an AlertDialog.Builder to display a dialog to prompt the user to enter a password, I then …

android android-edittext android-alertdialog
Android AlertDialog with dynamically changing text on every request

I want to show an AlertDialog with one option that might change on every request. So for example at one …

java android android-alertdialog
How can can I add custom buttons into an AlertDialog's layout?

I have AlertDialog with Positive and Negative buttons. In AlertDialog layout I have EditText and two Buttons (btnAdd1, btnAdd2). I …

android button layout dialog android-alertdialog
Simplest yes/no dialog fragment

I'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-alertdialog
Android Dialog - Rounded Corners and Transparency

I'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 transparent
How to set Single Choice Items inside AlertDialog?

I haven't been able to set a Single Choice list, or a Multiple Choice List inside an AlertDialog. I tried …

android android-alertdialog
android AlertDialog setView rules

The 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