Android CountDownTimer Crash inside onFinish() to open a dialog

264 Views Asked by At

Crashes my project when I open a dialog in onfinish() for countDownTimer for my game. The code is as follows:

countDownTimer = new CountDownTimer(31000, 1000) {
            public void onTick(long millisUntilFinished) {
                String time = String.format("%02d",millisUntilFinished/1000);
                tvCountdown.setText("00: " + time);
            }

            public void onFinish() {
                tvCountdown.setText("00: 00");
                Log.d("tttt"," Called CountDownTimer onFinish");
                //timeUpDialog();

                resetTimer();
        /* custom dialog creating */
                final Dialog dialog = new Dialog(SeriesActivity.this);
                dialog.requestWindowFeature(Window.FEATURE_NO_TITLE);
                dialog.setContentView(R.layout.dialog_correct_answer);
                dialog.setCancelable(false);

        /* set custom dialog component */
                ImageView ivWrong = (ImageView) dialog.findViewById(R.id.iv_correct_or_wrong);
                ivWrong.setImageResource(R.drawable.time_up);
                TextView tvWrong = (TextView) dialog.findViewById(R.id.tv_correct_or_wrong);
                tvWrong.setText(getString(R.string.time_up));
                Button btnRetry = (Button) dialog.findViewById(R.id.iv_next_or_retry);
                btnRetry.setTypeface(SplashScreenActivity.getRobotoFont(SeriesActivity.this));
                btnRetry.setText("Retry");

                btnRetry.setOnClickListener(new View.OnClickListener() {
                    @Override
                    public void onClick(View view) {
                        startQuiz();
                        dialog.dismiss();
                    }
                });
                dialog.show();
            }
        }.start(); 

Here is the log when the app crashed:

FATAL EXCEPTION: main                         
Process: me.mortuza.guesswhat, PID: 19154                                                                      
android.view.WindowManager$BadTokenException: Unable to add window -- token android.os.BinderProxy@ca15ab7 is not valid; is your activity running?
1

There are 1 best solutions below

0
On

you are trying to show the dialog for a context that no longer exists.
in your case SeriesActivity is destroyed.
try using
final Dialog dialog = new Dialog(getActivity().this);