How can I stop the counter of the Handler when it shouldn't count anymore? Maybe you can tell me how to do with the code below.
public void handler() {
nHandler.postDelayed(new Runnable() {
@Override
public void run() {
viewFlipper.setDisplayedChild(8);
}
}, 20000);
}