How to disable back button in Android code level?
Once the app is loaded the user should not be allowed to press back button. Is it possible?
Thanks.
How to disable back button in Android code level?
Once the app is loaded the user should not be allowed to press back button. Is it possible?
Thanks.
Override onBackPressed()
as shown below:
@Override
public void onBackPressed() {
// do nothing.
}