// 发送控制home 键
Intent it = new Intent();
it.setAction("android.intent.action.DISABLE_KEYCODE");
it.putExtra("keycode", KeyEvent.KEYCODE_HOME);
it.putExtra("state", 1);
this.sendBroadcast(it);
这个方法的优点是 执行完后所有界面的home键都失效
// 发送控制home 键
Intent it = new Intent();
it.setAction("android.intent.action.DISABLE_KEYCODE");
it.putExtra("keycode", KeyEvent.KEYCODE_HOME);
it.putExtra("state", 1);
this.sendBroadcast(it);
这个方法的优点是 执行完后所有界面的home键都失效