I'd like to lock the screen. I want to disable the home key and only use the back key. How do I accomplish this?
Use this method to disable the Home key in android
@Override public void onAttachedToWindow() { this.getWindow().setType(WindowManager.LayoutParams.TYPE_KEYGUARD); super.onAttachedToWindow(); }
1.4m articles
1.4m replys
5 comments
57.0k users