定时器的Android线程
public class MainActivity extends Activity
{
int min, sec;
/** Called when the activity is first created. */
@Override
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.main);
min = 5;
sec = 0;
final TextView timer1 = (TextView) findViewById(R.id.timer1);
timer1.setText(min + ":" + sec);
Thread t = new Thread() {
public void run() {
sec-=1;
if (sec<0) {
min-=1;
sec=59;
}
timer1.setText(min + ":" + sec);
try
{
sleep(1000);
}
catch (InterruptedException e)
{}
}
};
t.start();
}
}
这是Java中的Thread的代码,但它不起作用。 你可以帮我吗?
它的计时器从5分钟到0点倒数。
在你的情况下,你正在使用线程。 所以你不能从ui线程以外的线程更新ui。 所以你使用runOnUithread
。 我建议你使用倒数计时器或Handler。
1.CountDownTimer
http://developer.android.com/reference/android/os/CountDownTimer.html
这是另一个例子的链接。 建议您检查倒数计时器的链接。
倒计时器在几分钟和几秒钟
例:
public class MainActivity extends Activity {
Button b;
TextView tv;
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
tv = (TextView) findViewById(R.id.textView1);
b= (Button) findViewById(R.id.button1);
b.setOnClickListener(new OnClickListener()
{
@Override
public void onClick(View v) {
// TODO Auto-generated method stub
startTimer(200000);
}
});
}
private void startTimer(long time){
CountDownTimer counter = new CountDownTimer(30000, 1000){
public void onTick(long millisUntilDone){
Log.d("counter_label", "Counter text should be changed");
tv.setText("You have " + millisUntilDone + "ms");
}
public void onFinish() {
tv.setText("DONE!");
}
}.start();
}
}
你可以使用Handler
示例:
Handler m_handler;
Runnable m_handlerTask ;
int timeleft=100;
m_handler = new Handler();
m_handlerTask = new Runnable()
{
@Override
public void run() {
if(timeleft>=0)
{
// do stuff
Log.i("timeleft",""+timeleft);
timeleft--;
}
else
{
m_handler.removeCallbacks(m_handlerTask); // cancel run
}
m_handler.postDelayed(m_handlerTask, 1000);
}
};
m_handlerTask.run();
3.每
计时器在另一个线程上运行。 您应该在ui线程上更新ui。 使用runOnUiThread
示例:
int timeleft=100;
Timer _t = new Timer();
_t.scheduleAtFixedRate( new TimerTask() {
@Override
public void run() {
runOnUiThread(new Runnable() //run on ui thread
{
public void run()
{
Log.i("timeleft",""+timeleft);
//update ui
}
});
if(timeleft>==0)
{
timeleft--;
}
else
{
_t.cancel();
}
}
}, 1000, 1000 );
您正尝试使用后台Thread
更新UI Thread
timer1.setText(
你不能这样做。 你需要使用runOnUiThread()
, AsyncTask
, CountDownTimer
或类似的东西。
有关runOnUiThread()
的示例,请参阅此答案
但是CountDownTimer对于这样的事情是很好的。
此外,在SO上发布问题时,诸如“这不起作用”。 非常含糊,而且往往无益。 如果应用程序崩溃,请指出您的代码和logcat实际结果的预期结果。
链接地址: http://www.djcxy.com/p/74943.html上一篇: Android Thread for a timer
下一篇: how to retrieve json nested array datas and populate into listview?