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.
Thaknks.
+1
Sana
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
nicholas.hauschild
source
to share
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
Will tate
source
to share