Android實(shí)現(xiàn)自定義倒計(jì)時(shí)
最近工作中遇到個(gè)要做倒計(jì)時(shí)60秒的進(jìn)度條,經(jīng)過(guò)參考別人的資料做出來(lái)需求的效果。廢話少說(shuō)先來(lái)個(gè)效果:

一定想知道是怎么實(shí)現(xiàn)的吧!下面是代碼
public class CountDownView extends View {
//圓輪顏色
private int mRingColor;
//默認(rèn)圓顏色
private int mRingNormalColor ;
//圓輪寬度
private float mRingWidth;
//圓輪進(jìn)度值文本大小
private int mRingProgessTextSize;
//寬度
private int mWidth;
//高度
private int mHeight;
private Paint mPaint;
private Paint paintNormal;
//圓環(huán)的矩形區(qū)域
private RectF mRectF;
//
private int mProgessTextColor;
private int mCountdownTime;
private float mCurrentProgress;
private OnCountDownFinishListener mListener;
private ValueAnimator valueAnimator ;
public CountDownView(Context context) {
this(context, null);
}
public CountDownView(Context context, AttributeSet attrs) {
this(context, attrs, 0);
}
public CountDownView(Context context, AttributeSet attrs, int defStyleAttr) {
super(context, attrs, defStyleAttr);
TypedArray a = context.obtainStyledAttributes(attrs, R.styleable.CountDownView);
mRingColor = a.getColor(R.styleable.CountDownView_ringColor, context.getResources().getColor(R.color.circle_progress));
mRingWidth = a.getFloat(R.styleable.CountDownView_ringWidth, 8);
mRingProgessTextSize = a.getDimensionPixelSize(R.styleable.CountDownView_progressTextSize, DisplayUtil.sp2px(context, 12));
mProgessTextColor = a.getColor(R.styleable.CountDownView_progressTextColor, context.getResources().getColor(R.color.circle_progress));
mCountdownTime = a.getInteger(R.styleable.CountDownView_countdownTime, 60);
mRingNormalColor = a.getColor(R.styleable.CountDownView_ringColor, context.getResources().getColor(R.color._circle_progress));
a.recycle();
paintNormal = new Paint(Paint.ANTI_ALIAS_FLAG);
paintNormal.setAntiAlias(true);
mPaint = new Paint(Paint.ANTI_ALIAS_FLAG);
mPaint.setAntiAlias(true);
this.setWillNotDraw(false);
}
public void setCountdownTime(int mCountdownTime) {
this.mCountdownTime = mCountdownTime;
}
@Override
protected void onLayout(boolean changed, int left, int top, int right, int bottom) {
super.onLayout(changed, left, top, right, bottom);
mWidth = getMeasuredWidth();
mHeight = getMeasuredHeight();
mRectF = new RectF(0 + mRingWidth / 2, 0 + mRingWidth / 2,
mWidth - mRingWidth / 2, mHeight - mRingWidth / 2);
}
@Override
protected void onDraw(Canvas canvas) {
super.onDraw(canvas);
/**
*圓環(huán)
*/
//顏色
mPaint.setColor(mRingColor);
//空心
mPaint.setStyle(Paint.Style.STROKE);
//寬度
mPaint.setStrokeWidth(mRingWidth);
/**
*默認(rèn)圓環(huán)
*/
//顏色
paintNormal.setColor(mRingNormalColor);
//空心
paintNormal.setStyle(Paint.Style.STROKE);
//寬度
paintNormal.setStrokeWidth(mRingWidth);
canvas.drawArc(mRectF, 360, 360, false, paintNormal);
canvas.drawArc(mRectF, -90, mCurrentProgress - 360, false, mPaint);
//繪制文本
Paint textPaint = new Paint();
textPaint.setAntiAlias(true);
textPaint.setTextAlign(Paint.Align.CENTER);
String text = mCountdownTime - (int) (mCurrentProgress / 360f * mCountdownTime) + "";
textPaint.setTextSize(mRingProgessTextSize);
textPaint.setColor(mProgessTextColor);
//文字居中顯示
Paint.FontMetricsInt fontMetrics = textPaint.getFontMetricsInt();
int baseline = (int) ((mRectF.bottom + mRectF.top - fontMetrics.bottom - fontMetrics.top) / 2);
canvas.drawText(text, mRectF.centerX(), baseline, textPaint);
}
private ValueAnimator getValA(long countdownTime) {
ValueAnimator valueAnimator = ValueAnimator.ofFloat(0, 100);
valueAnimator.setDuration(countdownTime);
valueAnimator.setInterpolator(new LinearInterpolator());
valueAnimator.setRepeatCount(0);
return valueAnimator;
}
/**
* 開(kāi)始倒計(jì)時(shí)
*/
public void startCountDown() {
setClickable(false);
valueAnimator = getValA(mCountdownTime * 1000);
valueAnimator.addUpdateListener(new ValueAnimator.AnimatorUpdateListener() {
@Override
public void onAnimationUpdate(ValueAnimator animation) {
float i = Float.valueOf(String.valueOf(animation.getAnimatedValue()));
mCurrentProgress = (int) (360 * (i / 100f));
invalidate();
}
});
valueAnimator.start();
valueAnimator.addListener(new AnimatorListenerAdapter() {
@Override
public void onAnimationEnd(Animator animation) {
super.onAnimationEnd(animation);
//倒計(jì)時(shí)結(jié)束回調(diào)
if (mListener != null) {
mListener.countDownFinished();
}
setClickable(true);
}
});
}
public void setAddCountDownListener(OnCountDownFinishListener mListener) {
this.mListener = mListener;
}
public interface OnCountDownFinishListener {
void countDownFinished();
}
public void stopCountDown(){
valueAnimator.end();
}
}
然后新建一個(gè)attr.xml;
<?xml version="1.0" encoding="utf-8"?> <resources> <declare-styleable name="CountDownView"> <!--顏色--> <attr name="ringColor" format="color" /> <!-- 進(jìn)度文本的字體大小 --> <attr name="progressTextSize" format="dimension" /> <!-- 圓環(huán)寬度 --> <attr name="ringWidth" format="float" /> <!--進(jìn)度文本顏色--> <attr name="progressTextColor" format="color"/> <!--倒計(jì)時(shí)--> <attr name="countdownTime" format="integer"/> </declare-styleable> </resources>
這樣一個(gè)自定義的view就寫(xiě)完了;那怎么用呢;布局就不說(shuō)了;
losTime.setAddCountDownListener(new CountDownView.OnCountDownFinishListener() {
@Override
public void countDownFinished() {
倒計(jì)時(shí)結(jié)束
}
});
losTime.setCountdownTime(60);
losTime.startCountDown();
這樣就輕輕松松的跑起來(lái)了,希望能幫助到需要的你;
以上就是本文的全部?jī)?nèi)容,希望對(duì)大家的學(xué)習(xí)有所幫助,也希望大家多多支持腳本之家。
- Android實(shí)現(xiàn)啟動(dòng)頁(yè)倒計(jì)時(shí)效果
- Android 實(shí)現(xiàn)搶購(gòu)倒計(jì)時(shí)功能的示例
- android實(shí)現(xiàn)倒計(jì)時(shí)動(dòng)態(tài)圈
- android實(shí)現(xiàn)圓環(huán)倒計(jì)時(shí)控件
- android利用handler實(shí)現(xiàn)倒計(jì)時(shí)功能
- Android自定義view實(shí)現(xiàn)倒計(jì)時(shí)控件
- 解決Android-RecyclerView列表倒計(jì)時(shí)錯(cuò)亂問(wèn)題
- Android 倒計(jì)時(shí)控件 CountDownView的實(shí)例代碼詳解
- Android倒計(jì)時(shí)神器(CountDownTimer)
- Android倒計(jì)時(shí)功能的實(shí)現(xiàn)代碼
- Android 簡(jiǎn)單實(shí)現(xiàn)倒計(jì)時(shí)功能
- Android自定義TimeButton實(shí)現(xiàn)倒計(jì)時(shí)按鈕
- Android實(shí)現(xiàn)倒計(jì)時(shí)的按鈕效果
- 利用Android設(shè)計(jì)一個(gè)倒計(jì)時(shí)組件
相關(guān)文章
Android數(shù)據(jù)持久化之SQLite數(shù)據(jù)庫(kù)用法分析
這篇文章主要介紹了Android數(shù)據(jù)持久化之SQLite數(shù)據(jù)庫(kù)用法,結(jié)合實(shí)例形式分析了SQLite概念、功能、相關(guān)操作類(lèi)與使用技巧,需要的朋友可以參考下2017-05-05
Android進(jìn)程間通信(IPC)機(jī)制Binder簡(jiǎn)要介紹
本文主要介紹 Android進(jìn)程間通信(IPC)機(jī)制Binder簡(jiǎn)要介紹, 這里介紹了Binder機(jī)制如何實(shí)現(xiàn)進(jìn)程通信機(jī)制,有研究Android源碼的朋友可以看下2016-08-08
Android ormlite更改數(shù)據(jù)庫(kù)默認(rèn)位置
本文主要介紹Android ormlite,這里提供實(shí)例代碼并詳細(xì)說(shuō)明了 ormlite更改數(shù)據(jù)庫(kù)默認(rèn)位置,有需要的朋友可以參考下2016-07-07
android AsynTask處理返回?cái)?shù)據(jù)和AsynTask使用get,post請(qǐng)求
本文主要介紹了android AsynTask處理返回?cái)?shù)據(jù)和AsynTask使用get,post請(qǐng)求方法。具有一定的參考價(jià)值,下面跟著小編一起來(lái)看下吧2017-01-01
Android編程獲取系統(tǒng)隱藏服務(wù)實(shí)現(xiàn)鎖屏的方法
這篇文章主要介紹了Android編程獲取系統(tǒng)隱藏服務(wù)實(shí)現(xiàn)鎖屏的方法,涉及Android關(guān)于廣播,服務(wù),權(quán)限及鎖屏等操作的相關(guān)技巧,需要的朋友可以參考下2015-12-12
Android實(shí)現(xiàn)EditText輸入金額
EditText是Android中一個(gè)非常實(shí)用的控件,有很多InputType,可以來(lái)達(dá)到不同的輸入效果,下面通過(guò)實(shí)例代碼給大家解析android實(shí)現(xiàn)edittext輸入金額,需要的朋友參考下吧2016-12-12
ubuntu下 AndroidStudio4.1啟動(dòng)報(bào)錯(cuò)問(wèn)題的解決
這篇文章主要介紹了ubuntu下 AndroidStudio4.1啟動(dòng)報(bào)錯(cuò)問(wèn)題的解決,本文給大家分享個(gè)人經(jīng)驗(yàn)對(duì)大家的學(xué)習(xí)或工作具有一定的參考借鑒價(jià)值,需要的朋友可以參考下2020-10-10
Android單元測(cè)試之對(duì)Activity的測(cè)試示例
本篇文章主要介紹了Android單元測(cè)試之對(duì)Activity的測(cè)試示例,具有一定的參考價(jià)值,有興趣的可以了解一下2017-08-08

