Android开发--倒计时的实现

Android开发中,很多时候我们需要对重新发送这种的按钮上面实现一个倒计时的功能。

这时候,Android给我们提供了一个非常不错的倒计时类:CountDownTimer


首先,我们需要在布局文件当中添加一个Textview和一个Button控件


如下:

<span style="font-size:18px;"><RelativeLayout 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:paddingBottom="@dimen/activity_vertical_margin"
    android:paddingLeft="@dimen/activity_horizontal_margin"
    android:paddingRight="@dimen/activity_horizontal_margin"
    android:paddingTop="@dimen/activity_vertical_margin"
    tools:context="com.hql.timelater.MainActivity" >

    <TextView
        android:id="@+id/tmelater"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:text="@string/hello_world" />

    <Button
        android:id="@+id/timelater"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_marginTop="100dp"
        android:enabled="false"
        android:text="@string/hello_world" />

</RelativeLayout></span>

然后在MainActivity.java文件添加代码

public class MainActivity extends Activity
{
	private TextView tv_showTime;
	private CountDownTimer time;
	private Button btn_onclick;

	protected void onCreate(Bundle savedInstanceState)
	{
		super.onCreate(savedInstanceState);
		setContentView(R.layout.activity_main);
		tv_showTime = (TextView) findViewById(R.id.tmelater);
		btn_onclick = (Button) findViewById(R.id.timelater);
		time = new CountDownTimer(60000, 1000)
		{

			public void onTick(long millisUntilFinished)
			{
				tv_showTime.setText("seconds remaining: " + millisUntilFinished / 1000);
				btn_onclick.setText("剩余" + millisUntilFinished / 1000 + "s");
			}

			public void onFinish()
			{
				tv_showTime.setText("done!");
				btn_onclick.setText("done!");
				btn_onclick.setEnabled(true);
			}
		}.start();
	}

}

注意

1、time=new CountDownTimer(60000,1000)参数解释:第一个参数,时间总长度。第二个参数,间隔时间长度。单位:毫秒

2、millisUntilFinished:表示总时间






评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值