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

i have a button and i would like to open a dialog as i press it.this is my code:

Button more = (Button) findViewById(R.id.more);
more.setOnClickListener(new View.OnClickListener() {
        public void onClick(View view) {
            //Intent myIntent = new Intent(view.getContext(), agones.class);
            //startActivityForResult(myIntent, 0);


            AlertDialog alertDialog = new AlertDialog.Builder(this).create();
            alertDialog.setTitle("hi");
            alertDialog.setMessage("this is my app");

            alertDialog.setButton("Continue..", new DialogInterface.OnClickListener() {
               public void onClick(DialogInterface dialog, int which) {
                  // here you can add functions
               }
            });
        }

    });
share|improve this question
What doesn't work? – RoflcoptrException Jan 31 '11 at 11:48
4  
add this to your code alertDialog.show(); – ingsaurabh Jan 31 '11 at 11:52
The constructor AlertDialog.Builder(new View.OnClickListener(){}) is undefined – androidDe Jan 31 '11 at 12:00
2  
AlertDialog alertDialog = new AlertDialog.Builder(ActivityName.this).create(); – ingsaurabh Jan 31 '11 at 12:04

2 Answers

up vote 13 down vote accepted

As @Roflcoptr has said, you haven't called alertDialog.show() method. thus your dialog doesn't appear.

Here's your edited code:

Button more = (Button) findViewById(R.id.more);
more.setOnClickListener(new View.OnClickListener() {
    public void onClick(View view) {
        //Intent myIntent = new Intent(view.getContext(), agones.class);
        //startActivityForResult(myIntent, 0);


        AlertDialog alertDialog = new AlertDialog.Builder(<YourActivityName>this).create(); //Read Update
        alertDialog.setTitle("hi");
        alertDialog.setMessage("this is my app");

        alertDialog.setButton("Continue..", new DialogInterface.OnClickListener() {
           public void onClick(DialogInterface dialog, int which) {
              // here you can add functions
           }
        });

        alertDialog.show();  //<-- See This!
    }

});

if you write this instead of <ActivityName>.this, then it is going to take the reference of View.OnClickListener since this is currently being accessed inside it. You need to give your Activity's name there.

share|improve this answer
my problem it that eclipse hights the new AlertDialog.Builder and says that is undefined in the onClick – androidDe Jan 31 '11 at 11:58
1  
AlertDialog alertDialog = new AlertDialog.Builder(ActivityName.this).create(); – ingsaurabh Jan 31 '11 at 12:01
3  
while creating just dont give as this instead give myActivity.this ....... it will work. – Ganapathy Jan 31 '11 at 12:01
thanks @Ganapthy!!that works fine mate! – androidDe Jan 31 '11 at 12:03
Thanks @Ganapathy I just couldn't notice it. so Im editing it to correct it. – Sheikh Aman Jan 31 '11 at 12:27

Your dialog isn't displayed, because you don't call AlertDialog#show.

share|improve this answer
That's what. +1 for you mate! – Sheikh Aman Jan 31 '11 at 11:52

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.