热门标签 | HotTags
当前位置:  开发笔记 > Android > 正文

android实现圆形渐变进度条

这篇文章主要为大家详细介绍了android实现圆形渐变进度条,文中示例代码介绍的非常详细,具有一定的参考价值,感兴趣的小伙伴们可以参考一下

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

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

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

1、声明自定义属性

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


    
    
    
    
    
    
    

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  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布局文件使用如下,为了方便测试效果,新增进度加、进度减,修改进度条颜色的按钮

<&#63;xml version="1.0" encoding="utf-8"&#63;>



  

    

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


推荐阅读
  • 基于机器学习的人脸识别系统实现
    本文介绍了一种使用机器学习技术构建人脸识别系统的实践案例。通过结合Python编程语言和深度学习框架,详细展示了从数据预处理到模型训练的完整流程,并提供了代码示例。 ... [详细]
  • 利用Selenium与ChromeDriver实现豆瓣网页全屏截图
    本文介绍了一种使用Selenium和ChromeDriver结合Python代码,轻松实现对豆瓣网站进行完整页面截图的方法。该方法不仅简单易行,而且解决了新版Selenium不再支持PhantomJS的问题。 ... [详细]
  • 解决TensorFlow CPU版本安装中的依赖问题
    本文记录了在安装CPU版本的TensorFlow过程中遇到的依赖问题及解决方案,特别是numpy版本不匹配和动态链接库(DLL)错误。通过详细的步骤说明和专业建议,帮助读者顺利安装并使用TensorFlow。 ... [详细]
  • 探索新一代API文档工具,告别Swagger的繁琐
    对于后端开发者而言,编写和维护API文档既繁琐又不可或缺。本文将介绍一款全新的API文档工具,帮助团队更高效地协作,简化API文档生成流程。 ... [详细]
  • 本文详细探讨了Android Activity中View的绘制流程和动画机制,包括Activity的生命周期、View的测量、布局和绘制过程以及动画对View的影响。通过实验验证,澄清了一些常见的误解,并提供了代码示例和执行结果。 ... [详细]
  • 本文探讨了在构建应用程序时,如何对不同类型的数据进行结构化设计。主要分为三类:全局配置、用户个人设置和用户关系链。每种类型的数据都有其独特的用途和应用场景,合理规划这些数据结构有助于提升用户体验和系统的可维护性。 ... [详细]
  • 在 Android 开发中,通过 Intent 启动 Activity 或 Service 时,可以使用 putExtra 方法传递数据。接收方可以通过 getIntent().getExtras() 获取这些数据。本文将介绍如何使用 RoboGuice 框架简化这一过程,特别是 @InjectExtra 注解的使用。 ... [详细]
  • Linux中的yum安装软件
    yum俗称大黄狗作用:解决安装软件包的依赖关系当安装依赖关系的软件包时,会将依赖的软件包一起安装。本地yum:需要yum源,光驱挂载。yum源:(刚开始查看yum源中的内容就是上图 ... [详细]
  • 鼠标悬停出现提示信息怎么做
    概述–提示:指启示,提起注意或给予提醒和解释。在excel中会经常用到给某个格子增加提醒信息,比如金额提示输入数值或最大长度值等等。设置方式也有多种,简单的,仅为单元格插入批注就可 ... [详细]
  • 本文将详细介绍多个流行的 Android 视频处理开源框架,包括 ijkplayer、FFmpeg、Vitamio、ExoPlayer 等。每个框架都有其独特的优势和应用场景,帮助开发者更高效地进行视频处理和播放。 ... [详细]
  • 气象对比分析
    本文探讨了不同地区和时间段的天气模式,通过详细的图表和数据分析,揭示了气候变化的趋势及其对环境和社会的影响。 ... [详细]
  • 本文探讨了如何利用NFC技术,将存储在Android手机中的患者信息安全高效地传输到台式计算机。重点介绍了适用于医院场景的NFC USB读卡器(如ACR122U)的应用方法。 ... [详细]
  • 探讨 HDU 1536 题目,即 S-Nim 游戏的博弈策略。通过 SG 函数分析游戏胜负的关键,并介绍如何编程实现解决方案。 ... [详细]
  • 本文回顾了2017年的转型和2018年的收获,分享了几家知名互联网公司提供的工作机会及面试体验。 ... [详细]
  • 深入解析动态代理模式:23种设计模式之三
    在设计模式中,动态代理模式是应用最为广泛的一种代理模式。它允许我们在运行时动态创建代理对象,并在调用方法时进行增强处理。本文将详细介绍动态代理的实现机制及其应用场景。 ... [详细]
author-avatar
可乐加冰2502937787
这个家伙很懒,什么也没留下!
PHP1.CN | 中国最专业的PHP中文社区 | DevBox开发工具箱 | json解析格式化 |PHP资讯 | PHP教程 | 数据库技术 | 服务器技术 | 前端开发技术 | PHP框架 | 开发工具 | 在线工具
Copyright © 1998 - 2020 PHP1.CN. All Rights Reserved | 京公网安备 11010802041100号 | 京ICP备19059560号-4 | PHP1.CN 第一PHP社区 版权所有