i want to disable android device home button when my app runs.
home button
i have tried following code but it din\'t help :
@Override public bo
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(); }