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.
Jav
I tried the code in two line and it works:
public boolean onCreateOptionsMenu(Menu menu) { super.onCreateOptionsMenu(menu); menu.add("Add Contacts"); menu.getItem(0).setIcon(R.drawable.ic_launcher); return true; }