我在我的一项活动中创建了一个菜单,如下所示:
/menu/my_menu_list.xml
<?xml version="1.0" encoding="utf-8"?>
<menu xmlns:android="http://schemas.android.com/apk/res/android">
<item android:id="@+id/mn_about" android:title="About"
android:icon="@drawable/about" />
<item android:id="@+id/mn_display_list" android:title="Display List"
android:icon="@drawable/display_list" />
</menu>
还覆盖这些方法。
@Override
public boolean onCreateOptionsMenu(Menu menu) {
MenuInflater inflater = getMenuInflater();
inflater.inflate(R.menu.my_menu_list, menu);
return true;
}
@Override
public boolean onOptionsItemSelected(MenuItem item) {
switch (item.getItemId()) {
case R.id.mn_about:
startActivity(new Intent(this, About.class));
break;
case R.id.mn_display_list:
startActivity(new Intent(this, DisplayList.class));
break;
}
}
那些工作完美。现在我需要在显示此菜单时禁用搜索键和相机键。以下代码适用于活动,但我不知道将此代码放在哪里作为菜单。
@Override
public boolean onKeyDown(int keyCode, KeyEvent event) {
if ((keyCode == KeyEvent.KEYCODE_CAMERA)) {
return false;
}
if ((keyCode == KeyEvent.KEYCODE_SEARCH)) {
return false;
}
return super.onKeyDown(keyCode, event);
}
编辑 1
我为整个应用程序禁用了相机。为此,我在清单文件中添加了以下接收者标签:
<receiver android:name=".MyReceiver">
<intent-filter android:priority="10000">
<action android:name="android.intent.action.CAMERA_BUTTON" />
<category android:name="android.intent.category.DEFAULT" />
</intent-filter>
<intent-filter android:priority="12000">
<action android:name="android.intent.action.VOICE_COMMAND" />
<category android:name="android.intent.category.DEFAULT" />
</intent-filter>
<intent-filter android:priority="11000">
<action android:name="android.intent.action.SEARCH_LONG_PRESS" />
<category android:name="android.intent.category.DEFAULT" />
</intent-filter>
</receiver>
还创建了一个扩展广播接收器的接收器类。
public class Receiver extends BroadcastReceiver{
@Override
public void onReceive(Context context, Intent intent) {
abortBroadcast();
}
}
这解决了相机问题,但不适用于长按搜索和语音拨号器。
编辑 2 我还尝试了以下方法来控制 Long_Press_Search 键。但不工作。
public class MyMenuInflater extends MenuInflater implements OnKeyListener {
public MyMenuInflater(Context context) {
super(context);
}
@Override
public boolean onKey(View v, int keyCode, KeyEvent event) {
if (keyCode == KeyEvent.KEYCODE_SEARCH) {
Log.d("KeyPress", "search");
return true;
}
return false;
}
}
并将 onCreateOptionsMenu() 更改如下。
@Override
public boolean onCreateOptionsMenu(Menu menu) {
MyMenuInflater inflater=new MyMenuInflater(this);
inflater.inflate(R.menu.my_menu_list, menu);
return true;
}
它不捕获按键事件。
我需要改变什么?