I am trying to test something with menu options in Android.. And I noticed that menu icons are not displaying if the targetSdkVersion
is greater than 10...
<?xml version="1.0" encoding="utf-8"?>
<menu xmlns:android="http://schemas.android.com/apk/res/android" >
<item android:id="@+id/about" android:title="@string/about_label"
android:icon="@android:drawable/ic_menu_info_details" android:alphabeticShortcut="a" />
<item android:id="@+id/help" android:title="@string/help_label"
android:icon="@android:drawable/ic_menu_help" android:alphabeticShortcut="h" />
</menu>
I am trying to debug, and I am not sure where to start.