I want to display a dialog box on a button click. Here is my code, but it is not working.

AlertDialog.Builder builder = new AlertDialog.Builder(
                        getApplicationContext());
                builder.setCancelable(true);
                builder.setTitle("Title");
                builder.setInverseBackgroundForced(true);
                builder.setPositiveButton("Yes",
                        new DialogInterface.OnClickListener() {
                            @Override
                            public void onClick(DialogInterface dialog,
                                    int which) {
                                dialog.dismiss();
                            }
                        });
                builder.setNegativeButton("No",
                        new DialogInterface.OnClickListener() {
                            @Override
                            public void onClick(DialogInterface dialog,
                                    int which) {
                                dialog.dismiss();
                            }
                        });
                AlertDialog alert = builder.create();
                alert.show();
link|improve this question

68% accept rate
7  
What is the problem/error-message? "Not working" is not a problem-description ;) – alopix May 16 '11 at 7:45
3  
Where this code is placed? In onCreate()? Then it is wrong. Dialog showing should be called when activity has been shown, so put this code in some button onClickListener. – Vladimir Ivanov May 16 '11 at 7:55
if you are using alert dialog then it is not need to dismiss for alert dialog. when you will click on button of alert dialog it will be automatically dismiss.. – CapDroid May 16 '11 at 7:59
Problem solved. I placed the code in onCreate() method. I corrected it and placed it in a button onClick() method, its working perfectly. Thanks Mr. Vladimir Ivanov. – Krishna May 16 '11 at 11:29
feedback

1 Answer

up vote 1 down vote accepted

Check this link, it might help you...

http://developer.android.com/guide/topics/ui/dialogs.html

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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