Reputation: 32221
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
Thanks in advance
Upvotes: 2
Views: 181
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:
(source: android.com)
Upvotes: 2