91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

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

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

怎么在android項目中實現一個倒計時動態圈

發布時間:2021-01-29 15:10:57 來源:億速云 閱讀:169 作者:Leah 欄目:開發技術

怎么在android項目中實現一個倒計時動態圈?針對這個問題,這篇文章詳細介紹了相對應的分析和解答,希望可以幫助更多想解決這個問題的小伙伴找到更簡單易行的方法。

布局:

<LinearLayout
  android:layout_width="wrap_content"
  android:layout_centerVertical="true"
  android:layout_centerHorizontal="true"
  android:layout_centerInParent="true"
  android:layout_height="wrap_content">
  <com.example.herman.testui.CountDownView
    android:id="@+id/tv_red_skip"
    android:layout_width="130dp"
    android:text="跳過"
    android:textColor="#ffffff"
    android:textSize="10sp"
    android:layout_height="130dp" />
</LinearLayout>

values下新建一個attr.xml,內容是:

<?xml version="1.0" encoding="utf-8"?>
<resources>

  <declare-styleable name="CountDownView">
    <!--顏色-->
    <attr name="ringColor" format="color" />
    <!-- 進度文本的字體大小 -->
    <attr name="progressTextSize" format="dimension" />
    <!-- 圓環寬度 -->
    <attr name="ringWidth" format="float" />
    <!--進度文本顏色-->
    <attr name="progressTextColor" format="color"/>
    <!--倒計時-->
    <attr name="countdownTime" format="integer"/>
  </declare-styleable>
</resources>

一個類,類名CountDownView,代碼如下:

package com.example.herman.testui;


import android.animation.Animator;
import android.animation.AnimatorListenerAdapter;
import android.animation.ValueAnimator;
import android.content.Context;
import android.content.res.TypedArray;
import android.graphics.Canvas;
import android.graphics.Paint;
import android.graphics.RectF;
import android.util.AttributeSet;
import android.view.View;
import android.view.animation.LinearInterpolator;

public class CountDownView extends View {

  //圓輪顏色
  private int mRingColor;
  //圓輪寬度
  private float mRingWidth;
  //圓輪進度值文本大小
  private int mRingProgessTextSize;
  //寬度
  private int mWidth;
  //高度
  private int mHeight;
  private Paint mPaint;
  //圓環的矩形區域
  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.deepOrange));
    mRingWidth = a.getFloat(R.styleable.CountDownView_ringWidth, 20);
    mRingProgessTextSize = a.getDimensionPixelSize(R.styleable.CountDownView_progressTextSize, DisplayUtil.sp2px(context, 20));
    mProgessTextColor = a.getColor(R.styleable.CountDownView_progressTextColor, context.getResources().getColor(R.color.deepOrange));
    mCountdownTime = a.getInteger(R.styleable.CountDownView_countdownTime, 10);
    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);
    /**
     *圓環
     */
    //顏色
    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;
  }
  /**
   * 開始倒計時
   */
  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);
        //倒計時結束回調
        if (mListener != null) {
          mListener.countDownFinished();
        }
        setClickable(true);
      }

    });
  }
  public void setAddCountDownListener(OnCountDownFinishListener mListener) {
    this.mListener = mListener;
  }
  public interface OnCountDownFinishListener {
    void countDownFinished();
  }
}

activity中這樣調用:

CountDownView cdv = (CountDownView) findViewById(R.id.tv_red_skip);

cdv.setAddCountDownListener(new CountDownView.OnCountDownFinishListener() {
  @Override
  public void countDownFinished() {
    //時間完了 干的事情
  }
});

cdv.startCountDown();

關于怎么在android項目中實現一個倒計時動態圈問題的解答就分享到這里了,希望以上內容可以對大家有一定的幫助,如果你還有很多疑惑沒有解開,可以關注億速云行業資訊頻道了解更多相關知識。

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

泰顺县| 荣昌县| 商河县| 重庆市| 石柱| 托克逊县| 西平县| 扎兰屯市| 于田县| 唐河县| 墨竹工卡县| 济宁市| 万载县| 南雄市| 江孜县| 岢岚县| 苍山县| 汉川市| 揭西县| 黔东| 梨树县| 安仁县| 田林县| 驻马店市| 莆田市| 肥乡县| 博乐市| 本溪| 交城县| 清河县| 岳普湖县| 云浮市| 滨海县| 佛坪县| 鄢陵县| 平泉县| 麻城市| 贡嘎县| 绥棱县| 翁源县| 苍溪县|