概述
在开发中我们有时会有这样的需求,即在固定的每隔一段时间执行某一个任务。比如UI上的控件需要随着时间改变,我们可以使用Java为我们提供的计时器的工具类,即Timer和TimerTask。
API
Timer是一个普通的类,其中有几个重要的方法;而TimerTask则是一个抽象类,其中有一个抽象方法run(),类似线程中的run()方法,我们使用Timer创建一个他的对象,然后使用这对象的schedule方法来完成这种间隔的操作。
Android考虑到线程安全问题,不允许在线程中执行UI线程。
android.os.Handler,这个可以实现各处线程间的消息传递。
schedule方法有三个参数
第一个参数就是TimerTask类型的对象,我们实现TimerTask的run()方法就是要周期执行的一个任务;
第二个参数有两种类型,第一种是long类型,表示多长时间后开始执行,另一种是Date类型,表示从那个时间后开始执行;
第三个参数就是执行的周期,为long类型。 schedule方法还有一种两个参数的执行重载,第一个参数仍然是TimerTask,第二个表示为long的形式表示多长时间后执行一次,为Date就表示某个时间后执行一次。 一个Timer就是一个线程,使用schedule方法完成对TimerTask的调度,多个TimerTask可以共用一个Timer,也就是说Timer对象调用一次schedule方法就是创建了一个线程,并且调用一次schedule 后TimerTask是无限制的循环下去的,使用Timer的cancel()停止操作。当然同一个Timer执行一次cancel()方法后,所有Timer线程都被终止。
用法:
private void statTime(){
timer = new Timer();
timerTask = new TimerTask(){
@Override
public void run() {
if (isRecording){
Message msg = new Message();
msg.what = MSG_TIME;
//发送
handler.sendMessage(msg);
}
}
};
if(timer != null){
timer.scheduleAtFixedRate(timerTask, 1000,1000);//严格按照时间执行
// timer.schedule(timerTask, 1000, 1000);//如果时间过长,间隔时间会不准
}
}
private void stopTime(){
if(timer!= null){
timer.cancel();
}
}
Handle:
private Handler handler = new Handler() {
@Override
public void handleMessage(Message msg) {
super.handleMessage(msg);
switch (msg.what) {
case MSG_TIME:
freshTime();
break;
default:
break;
}
}
};
更新时间:
private void freshTime() {
time++;
tvRecordTime.setText(formatTime(time));
}
/**
* 将秒转化为 HH:mm:ss 的格式
*
* @param time 秒
* @return
*/
private String formatTime(int time) {
if(decimalFormat == null){
decimalFormat = new DecimalFormat("00");
}
String hh = decimalFormat.format(time / 3600);
String mm = decimalFormat.format(time % 3600 / 60);
String ss = decimalFormat.format(time % 60);
return hh + ":" + mm + ":" + ss;
}
最后
以上就是贪玩口红为你收集整理的Android 计时器Timer,时间格式化以时分秒显示的全部内容,希望文章能够帮你解决Android 计时器Timer,时间格式化以时分秒显示所遇到的程序开发问题。
如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。
本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
发表评论 取消回复