我正在啓動一個調用自身幷包含一個定時器的活動,並且在定時器到期後,我想啓動一個活動,但問題是計時器在所有實例中同時過期該活動被調用,結果第二個活動在所有這些實例中被調用。如何避免這一點。代碼如下 - :在定時器到期後被調用很多次的活動
public void onFinish() {
Intent intent = new Intent(Exam.this, ScoreCard.class);
intent.putExtra("scoreTillNow", scoreTillNow);
intent.putExtra("timeLeft", timeLeft);
intent.putExtra("reward", reward);
intent.putExtra("punishment", punishment);
intent.putExtra("totalTime", totalTime);
startActivity(intent);
finish();
}
計時器代碼在哪裏? – k0sh