首页 > 代码库 > android 简易定时器

android 简易定时器

定时器

1.在android 应用开发当中,很多时候都要用到定时器,而要实现定时器更多的时候要用到两个类:Timer,和TimerTask

2.API对Timer的解释是:

 

简单的翻译一下:Timer用于在后台进程中去执行一个任务,一个单独的线程回来服务这个Timer...

所以Timer的使用的时候他的计时实在另外一个线程当中去执行的,如果你想定时去操作UI线程中UI,就要用到 Handler了

3.API对TimerTask的解释是:

Timer定时执行的任务就是由TimerTask来执行的。

4.在使用上面两个类的时候可能遇到两个问题:

  1).当报这个错的时候Timer is Cancel()是说明你把之前new 的Timer给Cancel() ,所以Timer 的Thread也给关闭了,想在用这个Timer就必须重新new一个,但在实际情况中很少会去执行Timer.cancel()的

  2)当报TimerTask is scheduled already的时候说明你把 之前的的TimerTask有重新用了一遍,

  一个TimerTask 通过schedule方法使用之后,不能通过schedule方法调用第二次,想重复使用是不行的,是一次性用品。

  当你重新想利用这个timertask时,那么你只能重新获得一个实例,最好是写成类:

  class MyTask extends TimerTask{	  @Override	  public void run(){	  	// TODO Auto-generated method stub	  	//do something	  }  };

  那么当你向再使用这个TimerTask时,你可以这么做:

  task	= new MyTask();  timer.schedule(task, 1000);

  对于这种只使用一次的timer,可以在使用完成之后停止它,新建一个timer意味着新建一个线程,不用了就销毁吧。

  timer.cancel();  timer.purge();  timer= null;

  每一次使用的时候

  timer= new Timer();

  当然你也可以让这个timer一直存在
  那么在重新new task之前,最好调用

  task.cancel();
5.下面给小例子:
MainActivity:
public class MainActivity extends Activity {    private Button btn;    private TextView tvShow;    private int count = 10;    Timer timer;    MyTimeTask mTimeTask;    @Override    protected void onCreate(Bundle savedInstanceState) {        super.onCreate(savedInstanceState);        setContentView(R.layout.activity_main);        timer = new Timer(true);        tvShow = (TextView) findViewById(R.id.tv_show);        btn = (Button) findViewById(R.id.btn);        btn.setOnClickListener(new OnClickListener() {            @Override            public void onClick(View v) {                mTimeTask = new MyTimeTask();                timer.schedule(mTimeTask, 0, 1000);            }        });    }    Handler mHandler = new Handler() {        public void handleMessage(Message msg) {            tvShow.setText("" + count--);            if (count <= 0) {                timer.purge();                mTimeTask.cancel();                count = 10;                btn.setEnabled(true);            } else {                btn.setEnabled(false);                System.out.println("还剩" + count + "秒");            }            super.handleMessage(msg);        };    };    private class MyTimeTask extends TimerTask {        @Override        public void run() {            Message message = mHandler.obtainMessage();            message.what = 0;            mHandler.sendMessage(message);        }    }

xml文件:activity_main

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"    xmlns:tools="http://schemas.android.com/tools"    android:layout_width="match_parent"    android:layout_height="match_parent"    android:orientation="vertical"    tools:context=".MainActivity" >    <TextView        android:id="@+id/tv_show"        android:layout_width="wrap_content"        android:layout_height="wrap_content"        android:layout_gravity="center_horizontal"        android:layout_marginTop="50dp"        android:text="显示时间"        android:textSize="25sp" />    <Button        android:id="@+id/btn"        android:layout_width="match_parent"        android:layout_height="wrap_content"        android:layout_marginTop="10dp"        android:text="计时开始" /></LinearLayout>

运行的效果:

 

源码下载








 

android 简易定时器