设为首页 加入收藏

TOP

Android控件倒计时的实现
2014-11-24 03:20:02 来源: 作者: 【 】 浏览:1
Tags:Android 控件 倒计时 实现

public class CountDownButton extends CountDownTimer {
public static final int TIME_COUNT_FUTURE = 60000;
public static final int TIME_COUNT_INTERVAL = 1000;

private Context mContext;
private Button mButton;
private String mOriginalText;
private Drawable mOriginalBackground;
private Drawable mTickBackground;
private int mOriginalTextColor;

public CountDownButton() {
super(TIME_COUNT_FUTURE, TIME_COUNT_INTERVAL);
}

public CountDownButton(long millisInFuture, long countDownInterval) {
super(millisInFuture, countDownInterval);
}

public void init(Context context, Button button) {
this.mContext = context;
this.mButton = button;
this.mOriginalText = mButton.getText().toString();
this.mOriginalBackground = mButton.getBackground();
this.mTickBackground = this.mOriginalBackground;
this.mOriginalTextColor = mButton.getCurrentTextColor();
}

public void setTickDrawable(Drawable tickDrawable) {
this.mTickBackground = tickDrawable;
}


@Override
public void onFinish() {
if (mContext != null && mButton != null) {
mButton.setText(mOriginalText);
mButton.setTextColor(mOriginalTextColor);
mButton.setBackgroundDrawable(mOriginalBackground);
mButton.setClickable(true);
}
}


@Override
public void onTick(long millisUntilFinished) {
if (mContext != null && mButton != null) {
mButton.setClickable(false);
mButton.setBackgroundDrawable(mTickBackground);
mButton.setTextColor(mContext.getResources().getColor(android.R.color.darker_gray));
mButton.setText(mOriginalText + "(" + millisUntilFinished / 1000 + "')");
}
}
}


】【打印繁体】【投稿】【收藏】 【推荐】【举报】【评论】 【关闭】 【返回顶部
分享到: 
上一篇Android中读取中文字符的文件与文.. 下一篇Android在OnCreate中获取控件的宽..

评论

帐  号: 密码: (新用户注册)
验 证 码:
表  情:
内  容:

·常用meta整理 | 菜鸟 (2025-12-25 01:21:52)
·SQL HAVING 子句:深 (2025-12-25 01:21:47)
·SQL CREATE INDEX 语 (2025-12-25 01:21:45)
·Shell 传递参数 (2025-12-25 00:50:45)
·Linux echo 命令 - (2025-12-25 00:50:43)