Toka A. Amin
Toka A. Amin

Reputation: 166

What is the name of this android menu view?

What is the name of this menu view and how can I make one just like it?

enter image description here

Upvotes: 1

Views: 103

Answers (2)

Touhid Swapon
Touhid Swapon

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

mrisek
mrisek

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

Related Questions