Reputation: 9915
I would like to create a custom PopUp menu in Android like the one in the attached screenshot. Any pointers would be appreciated.
On click of the button "Choose Name" , you see a PopUp menu just below the button.
Thaknks.
Upvotes: 1
Views: 16019
Reputation: 42849
You should take a look at building custom dialogs. In Android, a Dialog
is typically in the form of a popup window. You can also do this with an Activity and apply the Dialog theme to it (mentioned in this link).
Upvotes: 6
Reputation: 33509
Sana,
You will probably want to look into creating a custom Dialog
for your application: http://developer.android.com/guide/topics/ui/dialogs.html#CustomDialog
Upvotes: 3