Not able disable Home button on specific android devices

后端 未结 3 1226
春和景丽
春和景丽 2020-11-27 06:29

I know this question has been asked many times and the answer is always \"No we cant disable home button\".

I have a little different query to ask.

I wrote s

3条回答
  •  小蘑菇
    小蘑菇 (楼主)
    2020-11-27 07:33

    You may want to give this a try:

    @Override
    public void onBackPressed() {
    
    }
    
    @Override
    protected void onUserLeaveHint() {
        super.onUserLeaveHint();
        ((ActivityManager) getApplicationContext().getSystemService(Context.ACTIVITY_SERVICE)).moveTaskToFront(getTaskId(), 0);
    }
    
    @Override
    protected void onPause() {
        super.onPause();
        ((ActivityManager) getApplicationContext().getSystemService(Context.ACTIVITY_SERVICE)).moveTaskToFront(getTaskId(), 0);
    
    }
    

    Permissions needed -- add the following to manifest

    
    

提交回复
热议问题