我想知道如何在计时器停止后单击按钮后重新启动计时器。我想要的是:
- 第一个按钮点击:定时器启动
- 第二次点击:定时器停止
- 第三次点击:定时器重启
前两个工作但不是重新启动。
private Button startButton;
private TextView timerValue;
private long startTime = 0L;
private Handler customHandler = new Handler();
long timeInMilliseconds = 0L;
long timeSwapBuff = 0L;
long updatedTime = 0L;
private int checkState = 0;
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_pyramide);
timerValue = (TextView) findViewById(R.id.pyramideTime);
startButton = (Button) findViewById(R.id.pyramideButton);
startButton.setOnClickListener(new View.OnClickListener() {
public void onClick(View view) {
// start
if (checkState == 0) {
startButton.setText("Fertig");
startTime = SystemClock.uptimeMillis();
customHandler.postDelayed(updateTimerThread, 0);
checkState = 1;
}
// pause
else if (checkState == 1) {
startButton.setText("Neu starten");
timeSwapBuff += timeInMilliseconds;
customHandler.removeCallbacks(updateTimerThread);
checkState = 2;
}
// restart
else if (checkState == 2) {
timerValue.setText("0");
timeInMilliseconds = 0L;
customHandler.postDelayed(updateTimerThread, 0);
checkState = 0;
startButton.setText("Fertig");
}
}
});
}
private Runnable updateTimerThread = new Runnable() {
public void run() {
timeInMilliseconds = SystemClock.uptimeMillis() - startTime;
updatedTime = timeSwapBuff + timeInMilliseconds;
int secs = (int) (updatedTime / 1000);
int mins = secs / 60;
secs = secs % 60;
int milliseconds = (int) (updatedTime % 1000);
timerValue.setText("" + mins + ":" + String.format("%02d", secs)
+ ":" + String.format("%03d", milliseconds));
customHandler.postDelayed(this, 0);
}
};