ホームキーリスニング
2742 ワード
Homeキーはシステムのボタンで、私たちは
onKeyDown
を通じてブロックすることができません.それはブロックできません.私たちは彼がいつ押されたかを得るしかありません.放送受信者を通してpublic class HomeKeyEventBroadCastReceiver extends BroadcastReceiver {
static final String SYSTEM_REASON = "reason";
static final String SYSTEM_HOME_KEY = "homekey";
static final String SYSTEM_RECENT_APPS = "recentapps";
@Override
public void onReceive(Context context, Intent intent) {
String action = intent.getAction();
if (action.equals(Intent.ACTION_CLOSE_SYSTEM_DIALOGS)) {
String reason = intent.getStringExtra(SYSTEM_REASON);
if (reason != null) {
if (reason.equals(SYSTEM_HOME_KEY)) {
// home key
} else if (reason.equals(SYSTEM_RECENT_APPS)) {
// long home key
}
}
}
}
}
Activityでこの放送受信者を登録します
receiver = new HomeKeyEventBroadCastReceiver(); registerReceiver(receiver, new IntentFilter(Intent.ACTION_CLOSE_SYSTEM_DIALOGS));
Activity破棄の方法で登録をキャンセルする
unRegisterReceiver(receiver);