android option menu with icon

android

Solution

Override `OnPrepareOptionsMenu` and add icon from there too

and if its for above 3.0, use `android:showAsAction` in xml.

eg. `android:showAsAction="ifRoom|withText"`

Problem

How to show icon with option menu.I have tried the following code but my option menu is without image icon.I am using android version 4.0 for developing app. Java code : ``` public boolean onCreateOptionsMenu(Menu menu) { super.onCreateOptionsMenu(menu); menu.add("Add Contacts").setIcon( R.drawable.ic_launcher); return true; } ``` Following is my app's screen shot I need image to be displayed on the top of "Add Contacts" item.

Original source

Related problems