Menu Icon Is Not Showing In Android
I want to put icon in my menu item but icon is not showing i tried app:showAsAction='always' this but icon is showing on toolbar.But i want show icon with text. And here is my code
Solution 1:
Add this in PopupMenu's code.
yourpopmenu.setForceShowIcon(true); //ADD THIS LINE
Post a Comment for "Menu Icon Is Not Showing In Android"