[Android] Provide a PopupMenu component
See original GitHub issueCurrently there is no way to specify an overflow menu icon for Navigator.NavigationBar
(or is there?). I can add a custom button, sure, but I cannot find a way to show a menu. Does such a functionality exist?
The Menu component is widely used on Android, and it’ll be awesome to have it.
Issue Analytics
- State:
- Created 8 years ago
- Comments:53 (28 by maintainers)
Top Results From Across the Web
Popup Menu in Android With Example - GeeksforGeeks
In android, Menu is an important part of the UI component which is used to provide some common functionality around the application.
Read more >PopupMenu - Android Developers
Interface responsible for receiving menu item click events if the items themselves do ... Google uses cookies to deliver its services, to personalize...
Read more >Android Popup Menu with Examples - Tutlane
In android, Popup Menu displays a list of items in a modal popup window that is anchored to the view. The popup menu...
Read more >Menus and Popups | CodePath Android Cliffnotes
PopupMenu - A modal menu that is anchored to a particular view within an activity. The menu appears below that view when it...
Read more >How to Create Android Popup Menu Programmatically and ...
Hi and welcome to another tutorial from CodingDemos :)In this tutorial, you will learn how to create Android popup menu or floating menu ......
Read more >
Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start Free
Top Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
context popupMenu is already exposed on UIManager. I have a small wrapper that adds a vertical hamburger menu and shows the popup on it like the youtube app.
@terrysahaidak That’s a good point. As a somewhat ugly workaround I’m now using a Picker with an opacity of zero and a fixed width, positioning it on top of an icon (though not in a NavigationBar). I’d love it to be possible to specify an element for rendering the Picker button, perhaps something for a new issue.