每次打开我的 Optionsmenu(调用 onCreateOptionsMenu(..))时,我都会收到以下警告:
“没有 id 0 的键盘”
和
“使用默认键映射:/system/usr/keychars/qwerty.kcm.bin”
没看懂是什么意思,有人知道吗?我不喜欢这个答案。
这是我正在使用的简单代码:
@Override
public boolean onCreateOptionsMenu(Menu menu) {
super.onCreateOptionsMenu(menu);
getMenuInflater().inflate(R.menu.optmenu_start, menu);
return true;
}
和 optmenu_start.xml:
<menu xmlns:android="http://schemas.android.com/apk/res/android">
<item
android:id="@+id/optmenu_prefs"
android:title="@string/optmenu_prefs"
android:icon="@drawable/icon_menu_prefs"
/>
<item
android:id="@+id/optmenu_help"
android:title="@string/optmenu_help"
android:icon="@drawable/icon_menu_help"
/>
</menu>