編輯:關於android開發
//在這個構造方法裡需要傳入三個參數,一個是Activity,一個是總的時間millisInFuture,
// 一個是每次減少的時間,最後一個是顯倒計時的按鈕
用法:
TimeLastUtil timeLastUtil = new TimeLastUtil(this, 60000, 1000, btn);
timeLastUtil.start();
工具類:
public class TimeLastUtil extends CountDownTimer {
private Activity mActivity;
private TextView btn;// 按鈕
//在這個構造方法裡需要傳入三個參數,一個是Activity,一個是總的時間millisInFuture,
// 一個是countDownInterval,然後就是你在哪個按鈕上做這個是,就把這個按鈕傳過來就可以了
public TimeLastUtil(Activity mActivity, long millisInFuture,
long countDownInterval, TextView btn) {
super(millisInFuture, countDownInterval);
this.mActivity = mActivity;
this.btn = btn;
}
@SuppressLint("NewApi")
@Override
public void onFinish() {
btn.setText(R.string.register_regetchecknum);
btn.setClickable(true);// // 重新獲得點擊
btn.setBackgroundColor(Color.parseColor("#00CCCC"));// 還原背景色
}
@Override
public void onTick(long millisUntilFinished) {
btn.setClickable(false);// 設置不能點擊
btn.setText(millisUntilFinished / 1000 + "s後可重新發送");// 設置倒計時時間
// 設置按鈕為灰色,這時是不能點擊的
btn.setBackgroundColor(Color.GRAY);
Spannable span = new SpannableString(btn.getText().toString());// 獲取按鈕的文字
span.setSpan(new ForegroundColorSpan(Color.RED), 0, 2,
Spannable.SPAN_INCLUSIVE_EXCLUSIVE);// 講倒計時時間顯示為紅色
btn.setText(span);
}
}
編譯器開發系列--Ocelot語言7.中間代碼,編譯器--ocelotOcelot的中間代碼是仿照國外編譯器相關圖書Modern Compiler Implementat
Android自定義控件之動態柱狀圖 設計思路: 1.畫柱狀圖 2.畫豎線 3.畫頂部橫線 4.畫文字 1.畫柱狀圖 畫柱狀圖的方法很簡單,就是使用canvas.dra
自定義PopupWindow,popupwindow 一、布局 <?xml version=1.0 encoding=ut
Android制作粒子爆炸特效 簡介 最近在閒逛的時候,發現了一款粒子爆炸特效的控件,覺得比較有意思,效果也不錯。 但是代碼不好擴展,也就是說如果要提供不同的爆炸效果