how can we lock HOME KEY BACK KEY and MENU KEY in android Lollipop and Higher
I have a Transparent activity which has some paint functionality
while the activity is being used, I want to disable the
HOME KEY BACK KEY and MENU KEY
in Android lollipop and higher how can this be done
back press can be disabled using
@Override
public void onBackPressed() {
}
disabling home key was possible earlier but not supported now
how can this be done?