How to disable the Recent Tasks/Apps button

后端 未结 5 754
忘掉有多难
忘掉有多难 2020-11-30 02:48

I\'m building a child play application for Android. I need to disable all keys when it is in use. I have set the Application as the Home App and disabled the back key (that

5条回答
  •  抹茶落季
    2020-11-30 03:18

    Have you tried this code?

    public void onWindowFocusChanged(boolean hasFocus) {
        super.onWindowFocusChanged(hasFocus);
    
    
        Log.d("Focus debug", "Focus changed !");
    
    if(!hasFocus) {
        Log.d("Focus debug", "Lost focus !");
    
        Intent closeDialog = new Intent(Intent.ACTION_CLOSE_SYSTEM_DIALOGS);
        sendBroadcast(closeDialog);
    }
    }
    

    From: http://www.juliencavandoli.com/how-to-disable-recent-apps-dialog-on-long-press-home-button/

提交回复
热议问题