具有倒计时功能的android,Android实现倒计时30分钟功能

以30分钟为例写的一个倒计时:

直接上代码

public class MainActivity extends AppCompatActivity {

private int minute = 30;//这是分钟

private int second = 0;//这是分钟后面的秒数。这里是以30分钟为例的,所以,minute是30,second是0

private TextView timeView;

private Timer timer;

private TimerTask timerTask;

//这是接收回来处理的消息

private Handler handler = new Handler() {

public void handleMessage(Message msg) {

if (minute == 0) {

if (second == 0) {

timeView.setText("Time out !");

if (timer != null) {

timer.cancel();

timer = null;

}

if (timerTask != null) {

timerTask = null;

}

} else {

second--;

if (second >= 10) {

timeView.setText("0" + minute + ":" + second);

} else {

timeView.setText("0" + minute + ":0" + second);

}

}

} else {

if (second == 0) {

second = 59;

minute--;

if (minute >= 10) {

timeView.setText(minute + ":" + second);

} else {

timeView.setText("0" + minute + ":" + second);

}

} else {

second--;

if (second >= 10) {

if (minute >= 10) {

timeView.setText(minute + ":" + second);

} else {

timeView.setText("0" + minute + ":" + second);

}

} else {

if (minute >= 10) {

timeView.setText(minute + ":0" + second);

} else {

timeView.setText("0" + minute + ":0" + second);

}

}

}

}

}

};

@Override

protected void onCreate(Bundle savedInstanceState) {

requestWindowFeature(Window.FEATURE_NO_TITLE);

super.onCreate(savedInstanceState);

setContentView(R.layout.activity_main);

timeView = (TextView) findViewById(R.id.tv);

timeView.setText(minute + ":" + second);

timerTask = new TimerTask() {

@Override

public void run() {

Message msg = new Message();

msg.what = 0;

handler.sendMessage(msg);

}

};

timer = new Timer();

timer.schedule(timerTask, 0, 1000);

}

@Override

protected void onDestroy() {

if (timer != null) {

timer.cancel();

timer = null;

}

if (timerTask != null) {

timerTask = null;

}

minute = -1;

second = -1;

super.onDestroy();

}

@Override

protected void onStart() {

super.onStart();

}

@Override

protected void onStop() {

super.onStop();

}

@Override

protected void onResume() {

super.onResume();

}

@Override

protected void onRestart() {

super.onRestart();

}

@Override

protected void onPause() {

super.onPause();

}

}

ok,这就完成了。

以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持脚本之家。

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值