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.
Asked
Active
Viewed 194 times
0
-
You cant disable home button for security reason android is not allowing to do that – Khizar Hayat Mar 01 '16 at 06:45
-
thanks for the support – user3068659 Mar 01 '16 at 07:05
1 Answers
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