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

I want the dialog box to pop up after 5 seconds. Can someone explain to me what I am doing wrong? Im getting an error in the Finish() section of the timer, (I've only been programmming for about three months now so please bear with my stupidity.

public void run() {
    CountDownTimer counter  = new CountDownTimer(5000,1000) {

        @Override
        public void onTick(long millisUntilFinished) {
            // TODO Auto-generated method stub

        }
        public void onFinish() {
            if (count == value) {
                AlertDialog.Builder lost = new AlertDialog.Builder(this);  //  <-----There is my error its telling me // to go and set up my dialog AlertDialog.Builder(new CountDownTimer(){}) {  And I dont understand it


                lost.setMessage("You lost! you are ugly!" +
                        "" +
                " new game?");
                lost.setCancelable(false);
                lost.setPositiveButton("Yes", new DialogInterface.OnClickListener() {
                    public void onClick(DialogInterface dialog, int id) {
                        clicks.setText("Clicks ");
                        count = 1;
                        generator = new Random();
                        value = generator.nextInt(100);
                        imgBtn.setImageResource(R.drawable.push);
                    }
                });
                lost.setNegativeButton("No", new DialogInterface.OnClickListener() {
                    public void onClick(DialogInterface dialog, int id) {
                        generator = new Random();
                        value = generator.nextInt(100);
                        ButtonMasherActivity.this.finish();
                    }
                });

                lost.create();
                lost.show();
            }
        }

    };
    counter.start();
}
share|improve this question
What type of error you got please provide show Log.. – deepak Sharma Jan 12 '12 at 12:09

1 Answer

up vote 1 down vote accepted

Try this :

AlertDialog.Builder lost = new AlertDialog.Builder(ButtonMasherActivity.this);

AlertDialog.Builder needs a Context object not a CountdownTimer object.

share|improve this answer
Ok so I can get rid of the count down timer completely? – Rich Talcik Jan 12 '12 at 13:26
Just replace the line where you are getting the error with the line I provided in my answer, you should be good to go. – Aki Jan 13 '12 at 4:12
@Rich Did that solve your problem? – Aki Jan 16 '12 at 4:26

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.