How to create a custom PopUp menu

I would like to create a custom PopUp menu on Android like in the attached screenshot. Any pointers would be appreciated.

When you click the Select Name button, you see the PopUp menu just below the button.

enter image description here Thaknks.

+1


source to share


2 answers


You should look at creating custom dialogs . On Android, this is Dialog

usually a popup. You can also do this with an Activity and apply a dialog theme to it (mentioned in this link ).



+7


source


Sana,



You probably want to look into creating a custom one Dialog

for your app: http://developer.android.com/guide/topics/ui/dialogs.html#CustomDialog

+3


source







All Articles