new CountDownTimer(30000, 1000) {
public void onTick(long millisUntilFinished) {}
public void onFinish() {
setContentView(R.layout.another);
}
}.start();
But when the user closes the app, it does not work.
How to do ?
new CountDownTimer(30000, 1000) {
public void onTick(long millisUntilFinished) {}
public void onFinish() {
setContentView(R.layout.another);
}
}.start();
But when the user closes the app, it does not work.
How to do ?