集册 Android 百战经典 百战经典第七战-显示倒计时的Button按钮

百战经典第七战-显示倒计时的Button按钮

欢马劈雪     最近更新时间:2020-08-04 05:37:59

172

最近在做获取验证码的功能,考虑到优良的用户体验,在用户点击获取验证码后,Button变得不可点,同时上面会显示一个倒计时,倒计时结束后Button变得可点击。结合一些材料写了一个小Demo,大家可以应用到自己的项目中。

一、代码

1.activity_main.xml:

<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" >
    <Button
        android:id="@+id/btn_time"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:text="获取验证码" />
</RelativeLayout>

布局文件很简单,就一个button按钮。

2.MainActivity.java:

package com.example.timebutton;
//省略import
public class MainActivity extends Activity {
    private Button mTimeButton;
    private TimeCount time;
    @Override
    protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        requestWindowFeature(Window.FEATURE_NO_TITLE);
        setContentView(R.layout.activity_main);
        mTimeButton = (Button) findViewById(R.id.btn_time);
        time = new TimeCount(60000, 1000);
        mTimeButton.setOnClickListener(new OnClickListener() {
            @Override
            public void onClick(View v) {
                time.start();
            }
        });
    }
    /**
     * 继承倒计时类
     * @author 
     */
    class TimeCount extends CountDownTimer {
        /**
         * 构造方法
         * @param millisInFuture
         *            总倒计时长 毫秒
         * @param countDownInterval
         *            倒计时间隔
         */
        public TimeCount(long millisInFuture, long countDownInterval) {
            super(millisInFuture, countDownInterval);
        }
        @Override
        public void onTick(long millisUntilFinished) {
            mTimeButton.setEnabled(false);
            mTimeButton.setText(millisUntilFinished / 1000 + "秒");
        }
        @Override
        public void onFinish() {// 计时结束
            mTimeButton.setEnabled(true);
            mTimeButton.setText("重新获取");
        }
    }
}
展开阅读全文