我有 2 台设备在测试我的应用程序,一台 Galaxy Nexus 和一台 Desire HD(有硬件按钮)
我正在实现这样的菜单
@Override
public boolean onOptionsItemSelected(MenuItem item) {
switch (item.getItemId()) {
case R.id.feedback:
Intent i = new Intent(Intent.ACTION_SEND);
i.setType("message/rfc822");
i.putExtra(Intent.EXTRA_EMAIL , new String[]{"test@gmail.com"});
i.putExtra(Intent.EXTRA_SUBJECT, " feedback");
i.putExtra(Intent.EXTRA_TEXT , "");
try {
startActivity(Intent.createChooser(i, "Send mail..."));
} catch (android.content.ActivityNotFoundException ex) {
Toast.makeText(MainActivity.this, "There are no email clients installed.", Toast.LENGTH_SHORT).show();
}
return true;
case R.id.about:
Toast.makeText(MainActivity.this, "There are no email clients installed.", Toast.LENGTH_SHORT).show();
return true;
default:
return true;
}
}
@Override
public boolean onCreateOptionsMenu(Menu menu) {
super.onCreateOptionsMenu(menu);
getMenuInflater().inflate(R.menu.activity_main, menu);
return true;
}
在 Galaxy nexus 上,操作栏菜单按钮出现,它使菜单膨胀,一切正常。在操作栏中的 Desire HD 上,菜单按钮不显示,因为我有硬件按钮,但如果我按下硬件菜单按钮,则没有任何反应。
我怎样才能解决这个问题?
编辑:这是我的 xml
<?xml version="1.0" encoding="utf-8"?>
<menu xmlns:android="http://schemas.android.com/apk/res/android">
<item android:id="@+id/feedback"
android:icon="@drawable/ic_launcher"
android:title="Feedback"
android:showAsAction="never"/>
<item android:id="@+id/about"
android:icon="@drawable/ic_launcher"
android:title="About" />
</menu>