タイマーを止めて乾杯するにはどうすればいいですか?
onCreate {
//other code
myTimer = new Timer();
myTimer.schedule(new TimerTask() {
@Override
public void run() {
TimerMethod();
}
}, 0, 1000);
Toast.makeText(getApplicationContext(), "AS", 455).show();
}
private void TimerMethod()
{
this.runOnUiThread(Timer_Tick);
}
private Runnable Timer_Tick = new Runnable() {
public void run() {
rub_stat++;
if (rub_stat == 15){myTimer.cancel(); } }
};
したがって、rub_statが15に達した後、タイマーをキャンセルしてトーストを表示させたいと思います。前もって感謝します!