Reputation: 199
Hi, I would like to know how can I customized Menu icons. For instance, if the menu option is "Save" I want to put custom image rather than default image. Hope it is clear. Thanks
Upvotes: 1
Views: 462
Reputation: 3025
MenuItem item;
item.setIcon(icon); // icon is Drawable icon
item.setIcon(resIcon); // resIcon is int resIcon
Upvotes: 1