1.我们从布局着手:
<Button
android:id="@+id/rebind_sms_btn"
android:layout_width="120dp"
android:layout_height="45dp"
android:layout_marginLeft="5dp"
android:layout_marginRight="5dp"
android:background="@null"
android:gravity="center"
android:text="获取短信验证码"
android:textColor="#059CD4"
android:textSize="16sp" />
- 自定义倒计时时间类:
import android.os.CountDownTimer;
import android.widget.TextView;
public class MyCountTimer extends CountDownTimer {
public static final int TIME_COUNT = 121000;// 时间防止从119s开始显示(以倒计时120s为例子)
private TextView btn;
private int endStrRid;
private int normalColor, timingColor;// 未计时的文字颜色,计时期间的文字颜色
/**
* 参数 millisInFuture 倒计时总时间(如60S,120s等) 参数 countDownInterval 渐变时间(每次倒计1s)
*
* 参数 btn 点击的按钮(因为Button是TextView子类,为了通用我的参数设置为TextView)
*
* 参数 endStrRid 倒计时结束后,按钮对应显示的文字
*/
public MyCountTimer(long millisInFuture, long countDownInterval,
TextView btn, int endStrRid) {
super(millisInFuture, countDownInterval);
this.btn = btn;
this.endStrRid = endStrRid;
}
/**
*
* 参数上面有注释
*/
public MyCountTimer(TextView btn, int endStrRid) {
super(TIME_COUNT, 1000);
this.btn = btn;
this.endStrRid = endStrRid;
}
public MyCountTimer(TextView btn) {
super(TIME_COUNT, 1000);
this.btn = btn;
this.endStrRid = R.string.txt_getMsgCode_validate;
}
public MyCountTimer(TextView tv_varify, int normalColor, int timingColor) {
this(tv_varify);
this.normalColor = normalColor;
this.timingColor = timingColor;
}
// 计时完毕时触发
@Override
public void onFinish() {
if (normalColor > 0) {
btn.setTextColor(normalColor);
}
btn.setText(endStrRid);
btn.setEnabled(true);
}
// 计时过程显示
@Override
public void onTick(long millisUntilFinished) {
if (timingColor > 0) {
btn.setTextColor(timingColor);
}
btn.setEnabled(false);
btn.setText(millisUntilFinished / 1000 + "秒");
}
}
使用:
public class MainActivity extends Activity {
private Button rebind_sms_btn;
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
rebind_sms_btn=(Button) findViewById(R.id.rebind_sms_btn);
rebind_sms_btn.setOnClickListener(new OnClickListener() {
@Override
public void onClick(View v) {
// txt_getMsgCode_validate//定义为重新发送
MyCountTimer myCountTimer=new MyCountTimer(60000, 1000,rebind_sms_btn,R.string.txt_getMsgCode_validate );
myCountTimer.start();
}
});
}
}
效果图:
版权声明:本文内容由互联网用户自发贡献,该文观点仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 举报,一经查实,本站将立刻删除。
文章由极客之音整理,本文链接:https://www.bmabk.com/index.php/post/12890.html