首页 > 代码库 > 安卓倒计时实例
安卓倒计时实例
安卓实现倒计时,下面的例子是10秒的倒计时
public class PowerOff extends Activity { TextView textView; CountDownTimer timer; @Override protected void onCreate(Bundle savedInstanceState) { // TODO Auto-generated method stub super.onCreate(savedInstanceState); requestWindowFeature(Window.FEATURE_NO_TITLE); setContentView(R.layout.power_off); textView = (TextView) findViewById(R.id.time); timer = new CountDownTimer(10 * 1000, 1000) { @Override public void onTick(long millisUntilFinished) { textView.setText(millisUntilFinished / 1000 + "秒后关机"); } @Override public void onFinish() { textView.setText("正在关机..."); } }.start(); } }
安卓倒计时实例
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。