Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I've been trying to show a "Do you want to exit?" type of dialog when the user attempts to exit an Activity.

However I can't find the appropriate API hooks. Activity.onUserLeaveHint() initially looked promising, but I can't find a way to stop the Activity from finishing.

share|improve this question
17  
Is it absolutely essential that you have this prompt? When a user wants to finish an Activity, they should be able to do so immediately. You may want to rethink your strategy. – Tom R Feb 13 '10 at 15:30
2  
Displaying an exit confirmation option is compulsory for listing at Samsung's App store. One of my Apps was rejected for not having this. – John Ashmore Dec 5 '12 at 4:50
That's obnoxious, @Samsung. – dokkaebi Dec 14 '12 at 4:21
It depends on what you want to do upon exiting. If the state is preserved and you can just navigate back, showing a dialog might not be necessary. However, in one of my applications I clean up cookies, data, and close connections for good with a final commit of data. User's should be made aware of the finality of their choice, especially since it is uncommon today to have that sense of finality in a mobile application. – Eric Tobias Feb 25 at 8:05

3 Answers

@Override
public boolean onKeyDown(int keyCode, KeyEvent event) {
    //Handle the back button
    if(keyCode == KeyEvent.KEYCODE_BACK) {
        //Ask the user if they want to quit
        new AlertDialog.Builder(this)
        .setIcon(android.R.drawable.ic_dialog_alert)
        .setTitle(R.string.quit)
        .setMessage(R.string.really_quit)
        .setPositiveButton(R.string.yes, new DialogInterface.OnClickListener() {

            @Override
            public void onClick(DialogInterface dialog, int which) {

                //Stop the activity
                YourClass.this.finish();    
            }

        })
        .setNegativeButton(R.string.no, null)
        .show();

        return true;
    }
    else {
        return super.onKeyDown(keyCode, event);
    }

}

In Android 2.0+ this would look like:

@Override
public void onBackPressed() {
    new AlertDialog.Builder(this)
        .setIcon(android.R.drawable.ic_dialog_alert)
        .setTitle("Closing Activity")
        .setMessage("Are you sure you want to close this activity?")
        .setPositiveButton("Yes", new DialogInterface.OnClickListener()
    {
        @Override
        public void onClick(DialogInterface dialog, int which) {
            finish();    
        }

    })
    .setNegativeButton("No", null)
    .show();
}
share|improve this answer
10  
Also in 2.0 and above there is a new onBackPressed event that is recommended over onKeyDown developer.android.com/intl/zh-TW/reference/android/app/… There is a section here talking about the changes and new recommended approach. developer.android.com/intl/zh-TW/sdk/android-2.0.html – Patrick Kafka Feb 13 '10 at 19:28
2  
Blog post on catching the back key here: android-developers.blogspot.com/2009/12/… Note that this does not allow you to catch other ways the user can leave your app: pressing home, selecting a notification, receiving a phone call, etc. – hackbod Feb 13 '10 at 19:56
This works perfectly but how do you force code execution to stop while it's being showed to the user? – advocate Mar 5 at 22:50
found it, this is a great solution here: stackoverflow.com/questions/4381296/… – advocate Mar 5 at 22:55
@Override
public void onBackPressed() {
    new AlertDialog.Builder(this)
           .setMessage("Are you sure you want to exit?")
           .setCancelable(false)
           .setPositiveButton("Yes", new DialogInterface.OnClickListener() {
               public void onClick(DialogInterface dialog, int id) {
                    CustomTabActivity.this.finish();
               }
           })
           .setNegativeButton("No", null)
           .show();
}
share|improve this answer
2  
This is a much better and really good solution, thanks – Praveen Gowda I V May 23 '12 at 19:02
A comment was made by elBradford: Calling the super onBackPressed is better than assuming onBackPressed will only call finish(). Even if that's true now, it may not be true in future APIs CustomTabActivity.super.onBackPressed – mplungjan Dec 9 '12 at 7:23

Have modified @user919216 code .. and made it compatible with WebView

@Override
public void onBackPressed() {
    if (webview.canGoBack()) {
        webview.goBack();

    }
    else
    {
     AlertDialog.Builder builder = new AlertDialog.Builder(this);
builder.setMessage("Are you sure you want to exit?")
       .setCancelable(false)
       .setPositiveButton("Yes", new DialogInterface.OnClickListener() {
           public void onClick(DialogInterface dialog, int id) {
                finish();
           }
       })
       .setNegativeButton("No", new DialogInterface.OnClickListener() {
           public void onClick(DialogInterface dialog, int id) {
                dialog.cancel();
           }
       });
AlertDialog alert = builder.create();
alert.show();
    }

}
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.