Reputation: 166
What is the name of this menu view and how can I make one just like it?
Upvotes: 1
Views: 103
Reputation: 1
Its just a Dialog
in android. You can make it by AlertDialog
Follow this official documentation. It may help you: https://developer.android.com/guide/topics/ui/dialogs.html
Upvotes: 0
Reputation: 659
This is a subclass of Dialog called AlertDialog
You can follow the official documentation to create it on yourself: https://developer.android.com/reference/android/app/AlertDialog.html
Also check this example of "Building an Alert Dialog" https://developer.android.com/guide/topics/ui/dialogs.html#AlertDialog
Upvotes: 3