AlertDialog in onPostExecute not showing

I am trying to show the onPostExecute method dialog for AsyncTask

@Override
protected void onPostExecute(HttpResponse response) {
if (response == null) {
            Log.d(TAG, "onPostExecute, response == null");
            AlertDialog.Builder builder = new AlertDialog.Builder(ConfirmPhoneNoCode.this);
            builder.setMessage("Are you sure you want to exit?").setCancelable(false)
                    .setPositiveButton("Yes", new DialogInterface.OnClickListener() {
                        public void onClick(DialogInterface dialog, int id) {
                            ConfirmPhoneNoCode.this.finish();
                        }
                    }).setNegativeButton("No", new DialogInterface.OnClickListener() {
                        public void onClick(DialogInterface dialog, int id) {
                            dialog.cancel();
                        }
                    });
            AlertDialog alert = builder.create();
        } else {
            int responseCode = response.getStatusLine().getStatusCode();
            String message = response.getStatusLine().getReasonPhrase();
            Log.d(TAG, "Response Code: " + String.valueOf(responseCode));
            Log.d(TAG, "Message: " + message);
        }
    }

      

I get a log message

03-31 23:02:42.912: D/ConfirmPhoneCode(21966): onPostExecute, response == null

      

which means

if(response == null) is executed but AlertDialog box don't show-up.

      

I will be grateful if someone can help me.

Thanks in Advance.

+3


source to share


2 answers


alert.show();

I think you should add it ...



AlertDialog alert = builder.create();
alert.show();

      

+3


source


I am fine. Are you calling alert.show()

?



+1


source







All Articles