How to disable the home key

pengwang picture pengwang · Oct 10, 2010 · Viewed 83.2k times · Source

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?

Answer

ASH picture ASH · Nov 1, 2011

Use this method to disable the Home key in android

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