Sreenu Vengala wrote:Hi.
how to show popup's with multiple values in Android, anyone help.
Thanks
srinu
[Note sure what you mean by multiple values..]
You can extend the Dialog class and define your own custom view as its content View. You can then instantiate this class and do a Dialog.show() and Dialog.dismiss(). If you want to present an AlertDialog(one with a yes/No/cancel button) then is an AlertDialogBuilder class that can help...
Alternatively, you can create an Activity with Dialog theme and with desired content View and display this activity to the user.