I call multiple Handlers by new Handler().postDelayed(new Runnable()..... How can I stop it when I click on back?
public class MyActivity extends AppCompatA
this may be old, but for those looking for answer you can use this...
public void stopHandler() { handler.removeMessages(0); }
cheers