At the end of this activity, the timer from the Handler method continues. How to make the Handler method be destroyed when the activity finishes?
Handler handler = new Handler();
handler.postDelayed(new Runnable() {
public void run() {
mTextViewCountDown.setTextColor(Color.RED);
}
}, 55000);