In my app i have to disable device's Home key, my tab supports android 4.4.2
I know how to disable back button functionality, i used below lines for that
@Override
public void onBackPressed() {
}
but i am concern about How to disable Home button functionality ?
I tried below code to disable home button but did not get any help
// to disable home button -- START --
@Override
public boolean onKeyDown(int keyCode, KeyEvent event)
{
if(keyCode == KeyEvent.KEYCODE_HOME)
{
return true;
}
return super.onKeyDown(keyCode, event);
}
// to disable home button -- END --