Addev
Addev

Reputation: 32221

ContextMenu like in Android

In my application I have already a ContextMenu for a View. It provides some options for a image: Download, Share, Delete....

When "Download" is chosen I'd like to show another ContextMenu-like asking for the format ("jpg,png,...") with a style similar to that image. But I really don't know how to open a new dialog with that appearance

enter image description here

Thanks in advance

Upvotes: 2

Views: 181

Answers (1)

Lukas Knuth
Lukas Knuth

Reputation: 25755

You should check the "Create Dialogs"-tutorial on the official Docs. They describe how to create an AlertDialog with a List, which looks exactly like your screenshot:

Screenshot
(source: android.com)

Upvotes: 2

Related Questions