我想在我的应用中使用秒表。所以我尝试了这个教程,但我需要的是两个更改,我无法弄清楚它们。
我发现了一个错误,当我按下开始然后它将再次启动时。所以我想要的是一个开始按钮,按下后会变为暂停按钮,反之亦然。如何切换按钮?
按钮的布局如下:
<Button
android:id=”@+id/btnPause”
android:layout_width=”90dp”
android:layout_marginLeft=”20dp”
android:layout_height=”45dp”
android:layout_centerVertical=”true”
android:layout_toRightOf=”@+id/btnStart”
android:text=”Pause” />
<Button
android:id=”@+id/btnStart”
android:layout_width=”90dp”
android:layout_height=”45dp”
android:layout_alignParentLeft=”true”
android:layout_centerVertical=”true”
android:layout_marginLeft=”68dp”
android:text=”Start” />
课程是这样的:
package com.androidituts.stopwatch;
import android.app.Activity;
import android.os.Bundle;
import android.os.Handler;
import android.os.SystemClock;
import android.view.View;
import android.widget.Button;
import android.widget.TextView;
public class StopwatchActivity extends Activity {
/** Called when the activity is first created. */
private TextView textTimer;
private Button startButton;
private Button pauseButton;
private long startTime = 0L;
private Handler myHandler = new Handler();
long timeInMillies = 0L;
long timeSwap = 0L;
long finalTime = 0L;
@Override
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.main);
textTimer = (TextView) findViewById(R.id.textTimer);
startButton = (Button) findViewById(R.id.btnStart);
startButton.setOnClickListener(new View.OnClickListener() {
public void onClick(View view) {
startTime = SystemClock.uptimeMillis();
myHandler.postDelayed(updateTimerMethod, 0);
}
});
pauseButton = (Button) findViewById(R.id.btnPause);
pauseButton.setOnClickListener(new View.OnClickListener() {
public void onClick(View view) {
timeSwap += timeInMillies;
myHandler.removeCallbacks(updateTimerMethod);
}
});
}
private Runnable updateTimerMethod = new Runnable() {
public void run() {
timeInMillies = SystemClock.uptimeMillis() – startTime;
finalTime = timeSwap + timeInMillies;
int seconds = (int) (finalTime / 1000);
int minutes = seconds / 60;
seconds = seconds % 60;
int milliseconds = (int) (finalTime % 1000);
textTimer.setText(“” + minutes + “:”
+ String.format(“%02d”, seconds) + “:”
+ String.format(“%03d”, milliseconds));
myHandler.postDelayed(this, 0);
}
};
}
答案 0 :(得分:1)
我做了同样的事情,每次按下它时都会切换一个按钮。这是我怎么做的
声明int state = 1
状态表示按钮的功能和外观。我们可以说1
start
2
是pause
而3
是stop
(仅用于教程目的)。
设置默认状态(在本例中为1)并相应地设置背景
每次检查onclicklistener
中的状态,如果状态为1,则执行相应的功能,更改按钮背景暂停并将状态更改为2,其他人则类似
祝你好运
答案 1 :(得分:0)
您可以自行更改按钮文字,或者尝试Toggle Button
答案 2 :(得分:0)
使其中一个按钮可见,然后只需将可见性从View.VISIBLE
切换到View.GONE
,然后对另一个按钮执行相反的操作。
答案 3 :(得分:0)
你可以试试这个:
startButton.setOnClickListener(new View.OnClickListener() {
public void onClick(View view) {
if(startButton.getText().equalsIgnoreCase("Start")) {
startTime = SystemClock.uptimeMillis();
myHandler.postDelayed(updateTimerMethod, 0);
}
else if(startButton.getText().equalsIgnoreCase("Pause")) {
timeSwap += timeInMillies;
myHandler.removeCallbacks(updateTimerMethod);
}
}
});