0

I have developed an android application. It has 3 activities, upon reaching the third activity, I need to disable "back", "home", "task" buttons. I have already done this for "back" and "task" buttons. But I couldn't handle the "home" button disabling. Please help me out of this.

user3068659
  • 443
  • 5
  • 14

1 Answers1

0

Not possible in lolipop but pre kitkat support this

@Override
public void onAttachedToWindow() {
    this.getWindow().setType(WindowManager.LayoutParams.TYPE_KEYGUARD);
    super.onAttachedToWindow();
}
Community
  • 1
  • 1
Ajay Pandya
  • 2,417
  • 4
  • 29
  • 65