最新国产好看的视频,伊人天堂AV在线,国产Aaaaaa视频,蜜臀视频在线观看一区,人妻av色图,密臀久久久精品影片,青青视频免费观看毛片,久草在线观看视,国产三级精品色情在线

Android自定義view漸變圓形動畫

 更新時間:2019年03月21日 11:30:10   作者:halaoda  
這篇文章主要為大家詳細介紹了Android自定義view漸變圓形動畫,具有一定的參考價值,感興趣的小伙伴們可以參考一下

本文實例為大家分享了Android自定義view漸變圓形動畫的具體代碼,供大家參考,具體內(nèi)容如下

直接上效果圖

自定義屬性

attrs.xml文件

<resources>
  <declare-styleable name="ProgressRing">
    <!--進度起始色-->
    <attr name="pr_progress_start_color" format="color" />
    <!--進度結(jié)束色-->
    <attr name="pr_progress_end_color" format="color" />
    <!--背景起始色-->
    <attr name="pr_bg_start_color" format="color" />
    <!--背景中間色-->
    <attr name="pr_bg_mid_color" format="color" />
    <!--背景結(jié)束色-->
    <attr name="pr_bg_end_color" format="color" />
    <!--進度值 介于0-100-->
    <attr name="pr_progress" format="integer" />
    <!--進度寬度-->
    <attr name="pr_progress_width" format="dimension" />
    <!--起始角度-->
    <attr name="pr_start_angle" format="integer" />
    <!--掃過的角度-->
    <attr name="pr_sweep_angle" format="integer" />
    <!--是否顯示動畫-->
    <attr name="pr_show_anim" format="boolean" />
  </declare-styleable>

</resources>

創(chuàng)建一個類 ProgressRing繼承自 view

public class ProgressRing extends View {

  private int progressStartColor;
  private int progressEndColor;
  private int bgStartColor;
  private int bgMidColor;
  private int bgEndColor;
  private int progress;
  private float progressWidth;
  private int startAngle;
  private int sweepAngle;
  private boolean showAnim;

  private int mMeasureHeight;
  private int mMeasureWidth;

  private Paint bgPaint = new Paint(Paint.ANTI_ALIAS_FLAG | Paint.DITHER_FLAG);
  private Paint progressPaint = new Paint(Paint.ANTI_ALIAS_FLAG | Paint.DITHER_FLAG);

  private RectF pRectF;

  private float unitAngle;

  private int curProgress = 0;

  public ProgressRing(Context context, AttributeSet attrs) {
    super(context, attrs);
    TypedArray ta = context.obtainStyledAttributes(attrs, R.styleable.ProgressRing);
    progressStartColor = ta.getColor(R.styleable.ProgressRing_pr_progress_start_color, Color.YELLOW);
    progressEndColor = ta.getColor(R.styleable.ProgressRing_pr_progress_end_color, progressStartColor);
    bgStartColor = ta.getColor(R.styleable.ProgressRing_pr_bg_start_color, Color.LTGRAY);
    bgMidColor = ta.getColor(R.styleable.ProgressRing_pr_bg_mid_color, bgStartColor);
    bgEndColor = ta.getColor(R.styleable.ProgressRing_pr_bg_end_color, bgStartColor);
    progress = ta.getInt(R.styleable.ProgressRing_pr_progress, 0);
    progressWidth = ta.getDimension(R.styleable.ProgressRing_pr_progress_width, 8f);
    startAngle = ta.getInt(R.styleable.ProgressRing_pr_start_angle, 150);
    sweepAngle = ta.getInt(R.styleable.ProgressRing_pr_sweep_angle, 240);
    showAnim = ta.getBoolean(R.styleable.ProgressRing_pr_show_anim, true);
    ta.recycle();

    unitAngle = (float) (sweepAngle / 100.0);

    bgPaint.setStyle(Paint.Style.STROKE);
    bgPaint.setStrokeCap(Paint.Cap.ROUND);
    bgPaint.setStrokeWidth(progressWidth);

    progressPaint.setStyle(Paint.Style.STROKE);
    progressPaint.setStrokeCap(Paint.Cap.ROUND);
    progressPaint.setStrokeWidth(progressWidth);

  }

  @Override
  protected void onDraw(Canvas canvas) {
    super.onDraw(canvas);

    /*for (int i = 0, end = (int) (progress * unitAngle); i <= end; i++) {
      progressPaint.setColor(getGradient(i / (float) end, progressStartColor, progressEndColor));
      canvas.drawArc(pRectF,
          startAngle + i,
          1,
          false,
          progressPaint);
    }*/
    if (!showAnim) {
      curProgress = progress;
    }

    drawBg(canvas);
    drawProgress(canvas);

    if (curProgress < progress) {
      curProgress++;
      postInvalidate();
    }
  }

  // 只需要畫進度之外的背景即可
  private void drawBg(Canvas canvas) {
    float halfSweep = sweepAngle / 2;
    for (int i = sweepAngle, st = (int) (curProgress * unitAngle); i > st; --i) {
      if (i - halfSweep > 0) {
        bgPaint.setColor(getGradient((i - halfSweep) / halfSweep, bgMidColor, bgEndColor));
      } else {
        bgPaint.setColor(getGradient((halfSweep - i) / halfSweep, bgMidColor, bgStartColor));
      }
      canvas.drawArc(pRectF,
          startAngle + i,
          1,
          false,
          bgPaint);
    }
  }

  private void drawProgress(Canvas canvas) {
    for (int i = 0, end = (int) (curProgress * unitAngle); i <= end; i++) {
      progressPaint.setColor(getGradient(i / (float) end, progressStartColor, progressEndColor));
      canvas.drawArc(pRectF,
          startAngle + i,
          1,
          false,
          progressPaint);
    }
  }

  public void setProgress(@IntRange(from = 0, to = 100) int progress) {
    this.progress = progress;
    invalidate();
  }

  public int getProgress() {
    return progress;
  }

  public int getGradient(float fraction, int startColor, int endColor) {
    if (fraction > 1) fraction = 1;
    int alphaStart = Color.alpha(startColor);
    int redStart = Color.red(startColor);
    int blueStart = Color.blue(startColor);
    int greenStart = Color.green(startColor);
    int alphaEnd = Color.alpha(endColor);
    int redEnd = Color.red(endColor);
    int blueEnd = Color.blue(endColor);
    int greenEnd = Color.green(endColor);
    int alphaDifference = alphaEnd - alphaStart;
    int redDifference = redEnd - redStart;
    int blueDifference = blueEnd - blueStart;
    int greenDifference = greenEnd - greenStart;
    int alphaCurrent = (int) (alphaStart + fraction * alphaDifference);
    int redCurrent = (int) (redStart + fraction * redDifference);
    int blueCurrent = (int) (blueStart + fraction * blueDifference);
    int greenCurrent = (int) (greenStart + fraction * greenDifference);
    return Color.argb(alphaCurrent, redCurrent, greenCurrent, blueCurrent);
  }

  @Override
  protected void onMeasure(int widthMeasureSpec, int heightMeasureSpec) {
    super.onMeasure(widthMeasureSpec, heightMeasureSpec);
    mMeasureWidth = getMeasuredWidth();
    mMeasureHeight = getMeasuredHeight();
    if (pRectF == null) {
      float halfProgressWidth = progressWidth / 2;
      pRectF = new RectF(halfProgressWidth + getPaddingLeft(),
          halfProgressWidth + getPaddingTop(),
          mMeasureWidth - halfProgressWidth - getPaddingRight(),
          mMeasureHeight - halfProgressWidth - getPaddingBottom());
    }

  }
}

xml布局

<myCircle.ProgressRing
  android:layout_width="320dp"
  android:layout_height="320dp"
  android:layout_gravity="center_horizontal"
  app:pr_bg_end_color="#00ffffff"
  app:pr_bg_mid_color="#CCCCCC"
  app:pr_bg_start_color="#00ffffff"
  app:pr_progress="70"
  app:pr_progress_end_color="#F78930"
  app:pr_progress_start_color="#00ffffff"
  app:pr_progress_width="40dp" />

以上就是本文的全部內(nèi)容,希望對大家的學(xué)習(xí)有所幫助,也希望大家多多支持腳本之家。

相關(guān)文章

最新評論

广河县| 安龙县| 滦南县| 永修县| 淮北市| 昭觉县| 台东县| 宽城| 新宾| 上虞市| 苏州市| 平远县| 铅山县| 隆昌县| 宁乡县| 益阳市| 聂荣县| 扬中市| 左权县| 平定县| 开江县| 方山县| 名山县| 保康县| 永和县| 加查县| 临桂县| 宁安市| 竹北市| 梅河口市| 墨竹工卡县| 宜君县| 平果县| 资中县| 巩留县| 海林市| 佳木斯市| 盐津县| 阿合奇县| 博野县| 普陀区|