Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I used the following code:

Alertdialog alertDialog =null;
AlertDialog.Builder builder=new Builder(this);
        builder.setTitle(title);
        builder.setMessage(message);

        builder.setPositiveButton("OK", new DialogInterface.OnClickListener() {

            public void onClick(DialogInterface dialog, int which) {

            }
        });
        alertDialog=builder.create();
        builder.create().show();

When i click home key(without any user event in "OK" button) i dismiss the alert dialog using the following code:

@Override
    protected void onPause() {

            if(alertDialog != null){
               alertDialog.dismiss();
            }

        }

        super.onPause();

    }

When re launch the application the alert dialog won't disappear.

What i did wrong?

Thanks.

share|improve this question
I don't want to show alert dialog when launch activity.i want to dismiss. – sd33din90 Jan 5 at 13:53
you have tried same code in onCreate instead of onPause? – ρяσѕρєя K Jan 5 at 13:58
How can we do alert dismiss in Oncreate()?Because when we re launch application after click home key OnStart() method only called.I used dismiss method in OnStart() won't get my result. – sd33din90 Jan 5 at 14:02
onresume also called when ur application came back to front from bg – ρяσѕρєя K Jan 5 at 14:04

1 Answer

up vote 2 down vote accepted

The problem is that you created two AlertDialog instances here:

alertDialog=builder.create();
builder.create().show();

Then you called dismiss() on the dialog that is not actually shown. This should fix the problem:

alertDialog=builder.show();
share|improve this answer
Thanks a lot!!!. – sd33din90 Jan 5 at 14:12

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.