I have this code in android studio:
The question is that if I give the button back and the main activity takes me, that is going to continue executing.
How do I make it so that once it's behind, it does not run what's in the onfinished?
new CountDownTimer (40000,1000) { @Override public void onTick(long l) { crono.setText("00:"+l/1000); if(contador==10) {
            }
        }
        @Override
        public void onFinish()
        {
            if(value.equals("tiempo"))
            {
                crono.setText("00:00");
            }
            else
            {
            esperar();
            }
        }
    }.start();