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.