android实现圆形渐变进度条

最近项目中使用到了渐变效果的圆形进度条,网上找了很多渐变效果不够圆滑,两个渐变颜色之间有明显的过渡,或者有些代码画出来的效果过渡不美观,于是自己参照写了一个,喜欢的朋友可以参考或者直接使用。

先上一张效果图,视频录制不太好,不过不影响效果

下面开始介绍实现代码,比较简单,直接贴代码吧

1、声明自定义属性

在项目的valuse文件夹下新建attrs.xml,在里面定义自定义控件需要的属性

<declare-styleable name="RoundProgress">
    <attr name="bgColor" format="color" />
    <attr name="roundWidth" format="dimension" />
    <attr name="textColor" format="color" />
    <attr name="textSize" format="dimension" />
    <attr name="maxProgress" format="integer" />
    <attr name="textIsDisplayable" format="boolean" />
    <attr name="lineColor" format="color" />
</declare-styleable>

2、自定义一个进度条RoundProgres继承view类

package com.blankj.progressring;

import android.animation.ValueAnimator;
import android.content.Context;
import android.content.res.TypedArray;
import android.graphics.Canvas;
import android.graphics.Color;
import android.graphics.Matrix;
import android.graphics.Paint;
import android.graphics.Rect;
import android.graphics.RectF;
import android.graphics.SweepGradient;
import android.graphics.Typeface;
import android.util.AttributeSet;
import android.util.Log;
import android.view.View;
import android.view.animation.LinearInterpolator;

import org.jetbrains.annotations.Nullable;

/**
 * 类描述:渐变的圆形进度条
 *
 * @author:lusy
 * @date :2018/10/17
 */
public class RoundProgress extends View {
  private static final String TAG = "roundProgress";
  /**
   * 背景圆环画笔
   */
  private Paint bgPaint;
  /**
   * 白色标记画笔
   */
  private Paint iconPaint;
  /**
   * 进度画笔
   */
  private Paint progressPaint;
  /**
   * 进度文本画笔
   */
  private Paint textPaint;
  /**
   * 背景圆环的颜色
   */
  private int bgColor;
  /**
   * 线条进度的颜色
   */
  private int iconColor;

  private int[] progressColor;
  /**
   * 中间进度百分比的字符串的颜色
   */
  private int textColor;
  /**
   * 中间进度百分比的字符串的字体大小
   */
  private float textSize;
  /**
   * 圆环的宽度
   */
  private float roundWidth;
  /**
   * 最大进度
   */
  private int max;
  /**
   * 当前进度
   */
  private float progress;
  /**
   * 是否显示中间的进度
   */
  private boolean textIsDisplayable;
  /**
   * 圆环半径
   */
  private int mRadius;
  private int center;

  private float startAngle = -90;
  private float currentAngle;
  private float currentProgress;

  public RoundProgress(Context context) {
    this(context, null);
  }

  public RoundProgress(Context context, @Nullable AttributeSet attrs) {
    super(context, attrs);
    TypedArray mTypedArray = context.obtainStyledAttributes(attrs, R.styleable.RoundProgress);

    //获取自定义属性和默认值
    bgColor = mTypedArray.getColor(R.styleable.RoundProgress_bgColor, Color.parseColor("#2d2d2d"));
    iconColor = mTypedArray.getColor(R.styleable.RoundProgress_lineColor, Color.parseColor("#ffffff"));
    textColor = mTypedArray.getColor(R.styleable.RoundProgress_textColor, Color.parseColor("#ffffff"));
    textSize = mTypedArray.getDimension(R.styleable.RoundProgress_textSize, 15);
    roundWidth = mTypedArray.getDimension(R.styleable.RoundProgress_roundWidth, 5);
    max = mTypedArray.getInteger(R.styleable.RoundProgress_maxProgress, 100);
    textIsDisplayable = mTypedArray.getBoolean(R.styleable.RoundProgress_textIsDisplayable, true);
    progressColor = new int[]{Color.parseColor("#747eff"), Color.parseColor("#0018ff"), Color.TRANSPARENT};
    mTypedArray.recycle();
    initPaint();
  }

  public RoundProgress(Context context, @Nullable AttributeSet attrs, int defStyleAttr) {
    super(context, attrs, defStyleAttr);
  }

  @Override
  protected void onMeasure(int widthMeasureSpec, int heightMeasureSpec) {
    //测量控件应占的宽高大小,此处非必需,只是为了确保布局中设置的宽高不一致时仍显示完整的圆
    int measureWidth = MeasureSpec.getSize(widthMeasureSpec);
    int measureHeight = MeasureSpec.getSize(heightMeasureSpec);
    setMeasuredDimension(Math.min(measureWidth, measureHeight), Math.min(measureWidth, measureHeight));
  }

  private void initPaint() {

    bgPaint = new Paint();
    bgPaint.setStyle(Paint.Style.STROKE);
    bgPaint.setAntiAlias(true);
    bgPaint.setColor(bgColor);
    bgPaint.setStrokeWidth(roundWidth);

    iconPaint = new Paint();
    iconPaint.setStyle(Paint.Style.STROKE);
    iconPaint.setAntiAlias(true);
    iconPaint.setColor(iconColor);
    iconPaint.setStrokeWidth(roundWidth);

    progressPaint = new Paint();
    progressPaint.setStyle(Paint.Style.STROKE);
    progressPaint.setAntiAlias(true);
    progressPaint.setStrokeWidth(roundWidth);

    textPaint = new Paint();
    textPaint.setStyle(Paint.Style.STROKE);
    textPaint.setTypeface(Typeface.DEFAULT_BOLD);
    textPaint.setAntiAlias(true);
    textPaint.setColor(textColor);
    textPaint.setTextSize(textSize);
    textPaint.setStrokeWidth(0);

  }

  @Override
  protected void onDraw(Canvas canvas) {
    /**
     * 画最外层的大圆环
     */
    //获取圆心的x坐标
    center = Math.min(getWidth(), getHeight()) / 2;
    // 圆环的半径
    mRadius = (int) (center - roundWidth / 2);

    RectF oval = new RectF(center - mRadius, center - mRadius, center + mRadius, center + mRadius);
    //画背景圆环
    canvas.drawArc(oval, startAngle, 360, false, bgPaint);
    //画进度圆环
    drawProgress(canvas, oval);

    canvas.drawArc(oval, startAngle, currentAngle, false, progressPaint);
    //画白色圆环
    float start = startAngle + currentAngle - 1;
    canvas.drawArc(oval, start, 3, false, iconPaint);

    //百分比文字
    int percent = (int) (((float) progress / (float) max) * 100);
    //测量字体宽度,我们需要根据字体的宽度设置在圆环中间
    String text = String.valueOf(percent)+"%";
    Rect textRect = new Rect();
    textPaint.getTextBounds(text, 0, text.length(), textRect);
    if (textIsDisplayable && percent >= 0) {
      //画出进度百分比文字
      float x = (getWidth() - textRect.width()) / 2;
      float y = (getHeight() + textRect.height()) / 2;
      canvas.drawText(text, x, y, textPaint);
    }
    if (currentProgress < progress) {
      currentProgress++;
      postInvalidate();
    }

  }

  /**
   * 画进度圆环
   *
   * @param canvas
   * @param oval
   */
  private void drawProgress(Canvas canvas, RectF oval) {
    float section = progress / 100;
    currentAngle = section * 360;
    //把需要绘制的角度分成100等分
    float unitAngle = (float) (currentAngle / 100.0);
    for (float i = 0, end = currentProgress * unitAngle; i <= end; i++) {
      SweepGradient shader = new SweepGradient(center, center, progressColor, new float[]{0.0f, section, 1.0f});
      Matrix matrix = new Matrix();
      matrix.setRotate(startAngle, center, center);
      shader.setLocalMatrix(matrix);
      progressPaint.setShader(shader);
      canvas.drawArc(oval,
          startAngle + i,
          1,
          false,
          progressPaint);
    }
  }

  @Override
  protected void onSizeChanged(int w, int h, int oldw, int oldh) {
    super.onSizeChanged(w, h, oldw, oldh);
    //计算外圆半径 宽,高最小值-填充边距/2
    center = (Math.min(w, h)) / 2;
    mRadius = (int) ((Math.min(w, h)) - roundWidth / 2);

  }

  public int getMax() {
    return max;
  }

  /**
   * 设置进度的最大值
   *
   * @param max
   */
  public void setMax(int max) {
    if (max < 0) {
      Log.e(TAG, "max progress not allow <0");
      return;
    }
    this.max = max;
  }

  /**
   * 获取进度
   *
   * @return
   */
  public float getProgress() {
    return progress;
  }

  /**
   * 设置进度
   *
   * @param progressValue
   * @param useAnima   是否需要动画
   */

  public void setProgress(float progressValue, boolean useAnima) {
    float percent = progressValue * max / 100;
    if (percent < 0) {
      percent = 0;
    }
    if (percent > 100) {
      percent = 100;
    }
    //使用动画
    if (useAnima) {
      ValueAnimator valueAnimator = ValueAnimator.ofFloat(0, percent);
      valueAnimator.addUpdateListener(new ValueAnimator.AnimatorUpdateListener() {
        @Override
        public void onAnimationUpdate(ValueAnimator animation) {
          progress = (float) animation.getAnimatedValue();
          postInvalidate();
        }
      });
      valueAnimator.setInterpolator(new LinearInterpolator());
      valueAnimator.setDuration(1500);
      valueAnimator.start();
    } else {
      this.progress = percent;
      postInvalidate();
    }
  }

  public int getTextColor() {
    return textColor;
  }

  public void setTextColor(int textColor) {
    this.textColor = textColor;
  }

  public float getTextSize() {
    return textSize;
  }

  public void setTextSize(float textSize) {
    this.textSize = textSize;
  }

  public float getRoundWidth() {
    return roundWidth;
  }

  public void setRoundWidth(float roundWidth) {
    this.roundWidth = roundWidth;
  }

  public int[] getProgressColor() {
    return progressColor;
  }

  public void setProgressColor(int[] progressColor) {
    this.progressColor = progressColor;
    postInvalidate();
  }

  public int getBgColor() {
    return bgColor;
  }

  public void setBgColor(int bgColor) {
    this.bgColor = bgColor;
  }

  public int getIconColor() {
    return iconColor;
  }

  public void setIconColor(int iconColor) {
    this.iconColor = iconColor;
  }

  public boolean isTextIsDisplayable() {
    return textIsDisplayable;
  }

  public void setTextIsDisplayable(boolean textIsDisplayable) {
    this.textIsDisplayable = textIsDisplayable;
  }

  public int getmRadius() {
    return mRadius;
  }

  public void setmRadius(int mRadius) {
    this.mRadius = mRadius;
  }

  public int getCenter() {
    return center;
  }

  public void setCenter(int center) {
    this.center = center;
  }

  public float getStartAngle() {
    return startAngle;
  }

  public void setStartAngle(float startAngle) {
    this.startAngle = startAngle;
  }
}

3、使用自定义进度条view

activity布局文件使用如下,为了方便测试效果,新增进度加、进度减,修改进度条颜色的按钮

<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout 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"
  android:background="#242424"
  android:gravity="center">

  <LinearLayout
    android:id="@+id/buttonLayout"
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:layout_margin="20dp"
    android:gravity="center_horizontal"
    android:orientation="horizontal">

    <Button
      android:id="@+id/addProgress"
      android:layout_width="wrap_content"
      android:layout_height="wrap_content"
      android:text="进度+" />

    <Button
      android:id="@+id/changeColor"
      android:layout_width="wrap_content"
      android:layout_height="wrap_content"
      android:layout_marginLeft="10dp"
      android:layout_marginRight="10dp"
      android:text="设置颜色" />

    <Button
      android:id="@+id/subtraceProgress"
      android:layout_width="wrap_content"
      android:layout_height="wrap_content"
      android:text="进度-" />
  </LinearLayout>

  <com.blankj.progressring.RoundProgress
    android:id="@+id/socProgress"
    android:layout_width="70dp"
    android:layout_height="70dp"
    android:layout_below="@id/buttonLayout"
    android:layout_centerHorizontal="true"
    android:layout_gravity="center"
    android:layout_marginLeft="20dp"
    android:layout_marginBottom="2dp"
    app:bgColor="@color/bgColor"
    app:maxProgress="100"
    app:roundWidth="8dp"
    app:textIsDisplayable="true"
    app:textSize="18sp" />

</RelativeLayout>

以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持我们。

(0)

相关推荐

  • android实现圆形渐变进度条

    最近项目中使用到了渐变效果的圆形进度条,网上找了很多渐变效果不够圆滑,两个渐变颜色之间有明显的过渡,或者有些代码画出来的效果过渡不美观,于是自己参照写了一个,喜欢的朋友可以参考或者直接使用. 先上一张效果图,视频录制不太好,不过不影响效果 下面开始介绍实现代码,比较简单,直接贴代码吧 1.声明自定义属性 在项目的valuse文件夹下新建attrs.xml,在里面定义自定义控件需要的属性 <declare-styleable name="RoundProgress"> <

  • Android Canva实现渐变进度条

    目录 前言 前言 标题说渐变进度条是为了方便理解,这里本身的项目背景是一款表盘的分针.先上图: 表盘 周圈蓝色的渐变条(分针)就是本次要实现的东西. 1.拆分 首先,熟悉Canvas的朋友应该知道它可以画出各种形状,但偏偏没有一头是圆的环形(这里不考虑使用path绘制).所以我们不得不把它拆分为2个形状:圆环与圆. 2.绘制圆环 绘制圆环有很多种方法,比如画2个圆取补集之类的.这里直接使用canvas.drawArc()函数来画.先看看函数原型: void drawArc (RectF oval

  • Android自定义水平渐变进度条

    先看进度条的效果: 具体实现: 新建类,继承自View,在onDraw中进行绘制: import android.content.Context; import android.graphics.Canvas; import android.graphics.LinearGradient; import android.graphics.Paint; import android.graphics.RectF; import android.graphics.Shader; import and

  • Android自定义圆形倒计时进度条

    效果预览 源代码传送门:https://github.com/yanzhenjie/CircleTextProgressbar 实现与原理 这个文字圆形的进度条我们在很多APP中看到过,比如APP欢迎页倒计时,下载文件倒计时等. 分析下原理,可能有的同学一看到这个自定义View就慌了,这个是不是要继承View啊,是不是要绘制啊之类的,答案是:是的.但是我们也不要担心,实现这个效果实在是so easy.下面就跟我一起来看看核心分析和代码吧. 原理分析 首先我们观察上图,需要几个部分组成: 1. 外

  • Android实现圆形渐变加载进度条

    最近设计要求要一个圆形进度条渐变的需求: 1.画圆形进度条 2.解决渐变 最终实现效果代码 package com.view; import android.content.Context; import android.content.res.TypedArray; import android.graphics.Canvas; import android.graphics.Color; import android.graphics.Matrix; import android.graph

  • Android新建水平节点进度条示例

    目录 前言 效果图 圆圈和文字状态 文字居中 代码 声明下style 接着创建布局文件 再Activity中使用它 mTextList数据集合 前言 效果图 前几天在网上没有找到合适的横向节点进度条,自己动手写了一个,先来看看效果图 圆圈和文字状态 我们看到小圆圈和文字有几种状态呢? 第一个空心的小圆圈是处理完成的状态 第二个实心的小圆圈是处理中的状态 第三个实心的小圆圈是待处理的状态没错,我们看到了小圆圈和文字有三种处理状态 文字居中 我们写一个类继承自AppCompatTextView,通过

  • Android实现个性化的进度条

    1.案例效果图 2.准备素材 progress1.png(78*78) progress2.png(78*78) 3.原理 采用一张图片作为ProgressBar的背景图片(一般采用颜色比较浅的).另一张是进度条的图片(一般采用颜色比较深的图片).进度在滚动时:进度图片逐步显示,背景图片逐步隐藏,达到上面的效果. 4.灵感来自Android控件提供的源码 4.1 默认带进度的进度条,如下图 <ProgressBar android:id="@+id/progressBar2" s

  • Android中自定义水平进度条样式之黑色虚线

    以下内容给大家介绍Android中自定义水平进度条样式之黑色虚线,对代码实现方法感兴趣的朋友一起学习吧. 布局layout中使用: <ProgressBar android:id="@+id/progress_bar" style="?android:attr/progressBarStyleHorizontal" <!--必须设置为水平--> android:progressDrawable="@drawable/myprogress&

  • Android 动态改变SeekBar进度条颜色与滑块颜色的实例代码

    遇到个动态改变SeekBar进度条颜色与滑块颜色的需求,有的是根据不同进度改变成不同颜色. 对于这个怎么做呢?大家都知道设置下progressDrawable与thumb即可,但是这样设置好就是确定的了,要动态更改需要在代码里实现. 用shape进度条与滑块 SeekBar设置 代码里动态设置setProgressDrawable与setThumb 画图形,大家都比较熟悉,background是背景图,secondaryProgress第二进度条,progress进度条: <layer-list

  • Android自定义多节点进度条显示的实现代码(附源码)

    亲们里面的线段颜色和节点图标都是可以自定义的. 在没给大家分享实例代码之前,先给大家展示下效果图: main.xml <RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android" android:id="@+id/rl_parent" xmlns:tools="http://schemas.android.com/tools" android:layou

随机推荐