0

Android モバイルでホーム ボタンの機能を無効にする方法と、ホーム ボタンに他のアクションを設定できますか? 誰でもこれについて例を教えてください。

4

1 に答える 1

0

onKeyEventあなたの活動を上書きすることができます

 public boolean onKeyDown(int keyCode, KeyEvent event) {
    if(keyCode == KeyEvent.KEYCODE_HOME) {
        // call the desired code.
        // If you want the home key disabled just uncomment the following line
        // return false;

    }
    return super.onKeyDown(keyCode, event);
 }
于 2013-03-27T06:08:44.297 に答える