android實現(xiàn)圓環(huán)倒計時控件
更新時間:2021年01月28日 17:32:30 作者:旺仔哥
這篇文章主要為大家詳細(xì)介紹了android實現(xiàn)圓環(huán)倒計時控件,文中示例代碼介紹的非常詳細(xì),具有一定的參考價值,感興趣的小伙伴們可以參考一下
本文實例為大家分享了android實現(xiàn)圓環(huán)倒計時控件的具體代碼,供大家參考,具體內(nèi)容如下

1.自定義屬性
<?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"/> <!--倒計時--> <attr name="countdownTime" format="integer"/> </declare-styleable> </resources>
2.自定義view
public class CountDownView extends View {
//圓環(huán)顏色
private int mRingColor;
//圓環(huán)寬度
private float mRingWidth;
//圓環(huán)進(jìn)度值文本大小
private int mRingProgessTextSize;
//寬度
private int mWidth;
//高度
private int mHeight;
private Paint mPaint;
//圓環(huán)的矩形區(qū)域
private RectF mRectF;
//
private int mProgessTextColor;
private int mCountdownTime;
private float mCurrentProgress;
ValueAnimator valueAnimator;
/**
* 監(jiān)聽事件
*/
private OnCountDownListener mListener;
public CountDownView(Context context) {
this(context, null);
}
public CountDownView(Context context, @Nullable AttributeSet attrs) {
this(context, attrs, 0);
}
public CountDownView(Context context, @Nullable AttributeSet attrs, int defStyleAttr) {
super(context, attrs, defStyleAttr);
// init();
/**
* 獲取相關(guān)屬性值
*/
TypedArray typedArray = context.obtainStyledAttributes(attrs, R.styleable.CountDownView);
mRingColor = typedArray.getColor(R.styleable.CountDownView_ringColor, context.getResources().getColor(R.color.colorAccent));
mRingWidth = typedArray.getFloat(R.styleable.CountDownView_ringWidth, 40);
mRingProgessTextSize = typedArray.getDimensionPixelSize(R.styleable.CountDownView_progressTextSize, 20);
mProgessTextColor = typedArray.getColor(R.styleable.CountDownView_progressTextColor, context.getResources().getColor(R.color.colorAccent));
mCountdownTime = typedArray.getInteger(R.styleable.CountDownView_countdownTime, 60);
typedArray.recycle();
mPaint = new Paint(Paint.ANTI_ALIAS_FLAG);
mPaint.setAntiAlias(true);
this.setWillNotDraw(false);
}
@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);
}
/**
* 設(shè)置倒計時間 單位秒
* @param mCountdownTime
*/
public void setCountdownTime(int mCountdownTime) {
this.mCountdownTime = mCountdownTime;
invalidate();
}
// public CountDownView(Context context, @Nullable AttributeSet attrs, int defStyleAttr, int defStyleRes) {
// super(context, attrs, defStyleAttr, defStyleRes);
// }
/**
* 動畫
* @param countdownTime
* @return
*/
private ValueAnimator getValueAnimator(long countdownTime) {
ValueAnimator valueAnimator = ValueAnimator.ofFloat(0, 100);
valueAnimator.setDuration(countdownTime);
valueAnimator.setInterpolator(new LinearInterpolator());
valueAnimator.setRepeatCount(0);
return valueAnimator;
}
@Override
protected void onDraw(Canvas canvas) {
super.onDraw(canvas);
/**
*圓環(huán)
*/
//顏色
mPaint.setColor(mRingColor);
//空心
mPaint.setStyle(Paint.Style.STROKE);
//寬度
mPaint.setStrokeWidth(mRingWidth);
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);
}
/**
* 開始倒計時
*/
public void startCountDown() {
valueAnimator = getValueAnimator(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);
//倒計時結(jié)束回調(diào)
if (mListener != null) {
mListener.countDownFinished();
}
}
});
}
/**
* 停止倒計時
*/
public void stopCountDdwn(){
valueAnimator.cancel();
}
public void setOnCountDownListener(OnCountDownListener mListener) {
this.mListener = mListener;
}
}
3.布局文件
<?xml version="1.0" encoding="utf-8"?> <android.support.constraint.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android" xmlns:app="http://schemas.android.com/apk/res-auto" xmlns:tools="http://schemas.android.com/tools" android:layout_width="match_parent" android:layout_height="match_parent" tools:context=".MainActivity"> <demo.com.countdowndemo.CountDownView android:id="@+id/countDownView" android:layout_width="50dp" android:layout_height="50dp" app:countdownTime="5" app:ringWidth="2" app:layout_constraintBottom_toBottomOf="parent" app:layout_constraintLeft_toLeftOf="parent" app:layout_constraintRight_toRightOf="parent" app:layout_constraintTop_toTopOf="parent" /> </android.support.constraint.ConstraintLayout>
4.Activity
public class MainActivity extends AppCompatActivity {
CountDownView countDownView;
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
countDownView = findViewById(R.id.countDownView);
countDownView.setOnCountDownListener(new OnCountDownListener() {
@Override
public void countDownFinished() {
//倒計時結(jié)束
//countDownView.setCountdownTime(10);
Intent intent = new Intent(MainActivity.this, Main2Activity.class);
startActivity(intent);
}
});
countDownView.startCountDown();
countDownView.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View v) {
countDownView.stopCountDdwn();
Intent intent = new Intent(MainActivity.this, Main2Activity.class);
startActivity(intent);
}
});
}
}
以上就是本文的全部內(nèi)容,希望對大家的學(xué)習(xí)有所幫助,也希望大家多多支持腳本之家。
您可能感興趣的文章:
- Android實現(xiàn)啟動頁倒計時效果
- Android 實現(xiàn)搶購倒計時功能的示例
- android實現(xiàn)倒計時動態(tài)圈
- android利用handler實現(xiàn)倒計時功能
- Android自定義view實現(xiàn)倒計時控件
- 解決Android-RecyclerView列表倒計時錯亂問題
- Android實現(xiàn)自定義倒計時
- Android 倒計時控件 CountDownView的實例代碼詳解
- Android倒計時神器(CountDownTimer)
- Android倒計時功能的實現(xiàn)代碼
- Android 簡單實現(xiàn)倒計時功能
- Android自定義TimeButton實現(xiàn)倒計時按鈕
- Android實現(xiàn)倒計時的按鈕效果
- 利用Android設(shè)計一個倒計時組件
相關(guān)文章
詳解Android開發(fā)技巧之PagerAdapter實現(xiàn)類的封裝
這篇文章主要介紹了詳解Android開發(fā)技巧之PagerAdapter實現(xiàn)類的封裝,小編覺得挺不錯的,現(xiàn)在分享給大家,也給大家做個參考。一起跟隨小編過來看看吧2017-11-11
Android Retrofit文件下載進(jìn)度顯示問題的解決方法
這篇文章主要為大家詳細(xì)介紹了Android Retrofit文件下載進(jìn)度顯示問題的解決方法,具有一定的參考價值,感興趣的小伙伴們可以參考一下2017-01-01
Android判斷軟鍵盤彈出并隱藏的簡單完美解決方法(推薦)
下面小編就為大家?guī)硪黄狝ndroid判斷軟鍵盤彈出并隱藏的簡單完美解決方法(推薦)。小編覺得挺不錯的,現(xiàn)在就分享給大家,也給大家做個參考。一起跟隨小編過來看看吧2016-10-10

