Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I'm following a book on Android Development to get myself started writing my first real app. I got up to the point where I'm making an options menu for one of my activities. The menu shows up, but the corresponding icon of the menu item refuses to display. Here is the code for the menu:

ReminderListActivity

@Override
    public boolean onCreateOptionsMenu(Menu menu) {
        super.onCreateOptionsMenu(menu);
        MenuInflater mi = getMenuInflater();
        mi.inflate(R.menu.list_menu, menu);
        return true;
    }

res/menu/list_menu.xml

<?xml version="1.0" encoding="utf-8"?>
<menu xmlns:android="http://schemas.android.com/apk/res/android" >
    <item android:id="@+id/menu_insert"
        android:icon="@drawable/menu_add"
        android:title="@string/menu_insert" />

</menu>

I have copied the ic_menu_add.png icon (32x32px) from one of my Android SDK subfolders to my res/drawable-mdpi folder and renamed the file to menu_add.png. I refreshed the folder within eclipse so the icon shows up, and as you can see I set it as the icon for the menu item in my layout file. I tried running my project in the emulator a few times, but the icon never shows up. For the record, I am using Android 4.0.3..

Any ideas?

share|improve this question
Can you try to put the icon in the density-less folder? I think it has nothing to do with your code. May be it is a glitch in Eclipse. – iturki Jan 18 '12 at 11:14
What exactly do you mean by density-less folder? There are only ldpi, mdpi and hdpi drawables folders, no? I tried putting the icon in all folders, but that didn't fix it. – Jort Jan 18 '12 at 11:21
1  
add a folder and name it 'drawable' then put the icon on it. If it didn't work, try to duplicate the icon on each folder. Don't forget to refresh the project and clean it before you test. – iturki Jan 18 '12 at 11:25
Your code is fine as far as I am aware of !! – iturki Jan 18 '12 at 11:27
1  
Is your icon the right color? I mean could it be blending with the background? Also, drawables is not a density less folder for things like icons, its used for shapes etc. If you have icons that are truly density independent (i.e solid color etc) they should go into the drawable-nodpi folder. – Code Poet Jan 18 '12 at 12:48
show 5 more comments

2 Answers

up vote 12 down vote accepted

On Android 3.0+, the preferred approach for the options menu (a spillover menu in the action bar) will not show icons. If you have android:targetSdkVersion="11" or higher, icons will never show up in menus on Android 3.0+. The icons will show up if you promote an options menu item to be a toolbar button, and the icons will show up on Android 1.x/2.x devices.

share|improve this answer
Thanks for the reply, I was suspecting it had something to do with Android's settings itself. Can I simply turn my options menu items into toolbar buttons or do I need to turn my entire options menu into a toolbar? – Jort Jan 18 '12 at 13:37
@Jort: Primarily, you should stop worrying about icons. You are welcome to use android:showAsAction to move options menu items into the action bar as toolbar buttons. – CommonsWare Jan 18 '12 at 14:00
Thanks for clarifying. The book I'm following atm is focused on writing apps for Android 2.2, that's why I was so persistant in trying to get my icons to show up. I haven't used the action bar yet, but now I understand how the UI changed in the newer versions of Android. Thanks again for the useful advice :) – Jort Jan 18 '12 at 14:35

It is said that starting with Android 3 the menu approach changed compared to Android 2. Now ActionBar is used and the very MENU button becomes somewhat depreceted.

However on some new devices the MENU button is still present allowing to show the action bar item which did not fit on the screen. Here is a screenshot of Samsung Galaxy SIII menu clearly showing icons next to items when pressing MENU button.

screenshot

However in my applications menu items still appear without buttons. Is this some overridden behaviour of something that can be achieved?

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.