how to disable home button in android?

前端 未结 4 1893
太阳男子
太阳男子 2020-11-28 13:14

i want to disable android device home button when my app runs.

i have tried following code but it din\'t help :

@Override
    public bo         


        
4条回答
  •  猫巷女王i
    2020-11-28 13:33

    You can use below method to disable the Home key in android:

    @Override
    public void onAttachedToWindow() {
        this.getWindow().setType(WindowManager.LayoutParams.TYPE_KEYGUARD);
        super.onAttachedToWindow();
    }
    

提交回复
热议问题