溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊(cè)×
其他方式登錄
點(diǎn)擊 登錄注冊(cè) 即表示同意《億速云用戶服務(wù)條款》

android如何自定義圓形倒計(jì)時(shí)顯示控件

發(fā)布時(shí)間:2021-09-27 13:47:14 來(lái)源:億速云 閱讀:124 作者:小新 欄目:編程語(yǔ)言

這篇文章主要為大家展示了“android如何自定義圓形倒計(jì)時(shí)顯示控件”,內(nèi)容簡(jiǎn)而易懂,條理清晰,希望能夠幫助大家解決疑惑,下面讓小編帶領(lǐng)大家一起研究并學(xué)習(xí)一下“android如何自定義圓形倒計(jì)時(shí)顯示控件”這篇文章吧。

代碼塊

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>

CountDownView.java

public class CountDownView extends View { //圓輪顏色 private int mRingColor; //圓輪寬度 private float mRingWidth; //圓輪進(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; private OnCountDownFinishListener mListener; 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.colorAccent));  mRingWidth = a.getFloat(R.styleable.CountDownView_ringWidth, 40);  mRingProgessTextSize = a.getDimensionPixelSize(R.styleable.CountDownView_progressTextSize, DisplayUtils.sp2px(context, 20));  mProgessTextColor = a.getColor(R.styleable.CountDownView_progressTextColor, context.getResources().getColor(R.color.colorAccent));  mCountdownTime = a.getInteger(R.styleable.CountDownView_countdownTime, 60);  a.recycle();  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);  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; } /**  * 開始倒計(jì)時(shí)  */ public void startCountDown() {  setClickable(false);  ValueAnimator 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(); }}

MainActivity.java

package com.ouyuan.demo.myapplication;import android.animation.ValueAnimator;import android.support.v7.app.AppCompatActivity;import android.os.Bundle;import android.view.View;import android.widget.TextView;import android.widget.Toast;public class MainActivity extends AppCompatActivity { CountDownView cdv; TextView textView; @Override protected void onCreate(Bundle savedInstanceState) {  super.onCreate(savedInstanceState);  setContentView(R.layout.activity_main);  cdv = (CountDownView) findViewById(R.id.countDownView);  cdv.setAddCountDownListener(new CountDownView.OnCountDownFinishListener() {   @Override   public void countDownFinished() {    Toast.makeText(MainActivity.this, "倒計(jì)時(shí)結(jié)束", Toast.LENGTH_SHORT).show();   }  });  cdv.setOnClickListener(new View.OnClickListener() {   @Override   public void onClick(View v) {    cdv.startCountDown();   }  }); }}

以上是“android如何自定義圓形倒計(jì)時(shí)顯示控件”這篇文章的所有內(nèi)容,感謝各位的閱讀!相信大家都有了一定的了解,希望分享的內(nèi)容對(duì)大家有所幫助,如果還想學(xué)習(xí)更多知識(shí),歡迎關(guān)注億速云行業(yè)資訊頻道!

向AI問(wèn)一下細(xì)節(jié)

免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如果涉及侵權(quán)請(qǐng)聯(lián)系站長(zhǎng)郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。

AI