Android - ActionBarSherlock上的自定义标签栏图标会产生错误

时间:2014-05-12 18:57:23

标签: android actionbarsherlock

我在这个项目中使用ActionBarSherlock和HoloEverywhere。 Main.xml非常简单,如下所示:

<menu xmlns:android="http://schemas.android.com/apk/res/android" >

<item
    android:id="@+id/action_settings"
    android:orderInCategory="100"
    android:showAsAction="ifRoom|withText"
    android:title="@string/action_info_settings"
    android:icon="@android:drawable/ic_menu_customsettings"/>

</menu>

我在drawable-mdpi,drawable-hdpi和drawable-xhdpi中有ic_menu_customsettings.png。我收到以下错误:

Error: No resource found that matches the given name (at 'icon' with value '@android:drawable/ic_menu_customsettings').

我是否应该做更多的事情,而不是将png文件放在这些文件夹中,以便ActionBar可以访问它们?

1 个答案:

答案 0 :(得分:0)

正确的行是:

android:icon="@drawable/ic_menu_customsettings"/>