AndroID开发中经常会有倒计时的功能,下面将总结出常见的集中实现方式。
1.直接使用Handler的消息机制来实现
xml布局中文件如下:
<?xml version="1.0" enCoding="utf-8"?><linearLayout xmlns:androID="http://schemas.androID.com/apk/res/androID" androID:layout_wIDth="match_parent" androID:layout_height="match_parent" androID:orIEntation="horizontal" > <button androID:ID="@+ID/button" androID:layout_wIDth="wrap_content" androID:layout_height="wrap_content" androID:onClick="clickbutton" androID:text="开始计时" /></linearLayout>
java代码如下:
import androID.app.Activity;import androID.os.Bundle;import androID.os.Handler;import androID.os.Message;import androID.vIEw.VIEw;import androID.Widget.button;public class FirstActivity extends Activity{ private button button; private int count = 60; private int COUNT_TIME = 0; @OverrIDe protected voID onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); setContentVIEw(R.layout.first_activity); button = (button) findVIEwByID(R.ID.button); } private Handler handler = new Handler(){ @OverrIDe public voID handleMessage(Message msg) { if(count <= 0){ count = 60; button.setText("重新计时"); button.setClickable(true); return; } count--; button.setText(""+count); sendEmptyMessageDelayed(COUNT_TIME,1000); } }; public voID clickbutton(VIEw vIEw){ handler.sendEmptyMessage(COUNT_TIME); button.setClickable(false); }}
2.使用Timer和TimerTask,结合handler一起实现倒计时
import java.util.Timer;import java.util.TimerTask;import androID.app.Activity;import androID.os.Bundle;import androID.os.Handler;import androID.os.Message;import androID.vIEw.VIEw;import androID.Widget.button;public class FirstActivity extends Activity{ private button button; private int count = 30; private int COUNT_TIME = 0; @OverrIDe protected voID onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); setContentVIEw(R.layout.first_activity); button = (button) findVIEwByID(R.ID.button); } private Handler handler = new Handler(){ @OverrIDe public voID handleMessage(Message msg) { button.setText(""+count); if(count <= 0){ count = 30; button.setClickable(true); button.setText("重新计时"); timerTask.cancel(); //取消该任务 } } }; private Timer timer = new Timer(); private TimerTask timerTask; public voID clickbutton(VIEw vIEw){ button.setClickable(false); timerTask = new TimerTask() { @OverrIDe public voID run() { count--; handler.sendEmptyMessage(COUNT_TIME); } }; timer.schedule(timerTask,1000); //0秒后,每过一秒钟执行一次该任务 } @OverrIDe protected voID onDestroy() { super.onDestroy(); //释放资源 if(timerTask != null){ timerTask.cancel(); timerTask = null; } if(timer != null){ timer.cancel(); timer = null; } }}
3.使用androID自带的原生倒计时类 CountDownTimer
import androID.app.Activity;import androID.os.Bundle;import androID.os.CountDownTimer;import androID.vIEw.VIEw;import androID.Widget.button;public class FirstActivity extends Activity{ private button button; private CountDownTimer timer; @OverrIDe protected voID onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); setContentVIEw(R.layout.first_activity); button = (button) findVIEwByID(R.ID.button); } public voID clickbutton(VIEw vIEw){ button.setClickable(false); //第一个参数:倒计时的毫秒数;第二个参数:接收onTick回调的时间间隔 timer = new CountDownTimer(30000,10) { public voID onTick(long millisUntilFinished) { button.setText(millisUntilFinished / 1000 + "秒"); } public voID onFinish() { button.setText("重新计时"); button.setClickable(true); } }; timer.start(); } @OverrIDe protected voID onDestroy() { super.onDestroy(); if(timer != null){ timer.cancel(); } }}
以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持编程小技巧。
总结以上是内存溢出为你收集整理的Android实现倒计时方法汇总全部内容,希望文章能够帮你解决Android实现倒计时方法汇总所遇到的程序开发问题。
如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)