I have an alert box for a log in and when ever the back button is pressed the alert box disappears. I’ve tried @Override but it still just stops the back on the activity not the alertbox. Is there something special i have to do to disable the back button on the alertbox?
public void onBackPressed() {
// do nothing.
}
I have an alert box for a log in and when ever the back
Share
I believe
setCancelable()is intended for this…http://developer.android.com/reference/android/app/AlertDialog.Builder.html#setCancelable(boolean)