Android自定义圆形进度条

所属分类: 软件编程 / Android 阅读数: 28
收藏 0 赞 0 分享

今天小编来手写一个自定义圆形进度条:先看效果:

首先我们在attrs属性文件中增加几个自定义属性

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

 <declare-styleable name="CustomProgressBar">
  <!-- 圆形进度条进度显示的颜色 -->
  <attr name="roundProgressColor" format="color"></attr>
  <!-- 外圈圆的颜色 -->
  <attr name="roundColor" format="color"></attr>
  <!-- 圆的总宽度 -->
  <attr name="roundWidth" format="dimension"></attr>
  <!-- 字体显示的大小 -->
  <attr name="textSize" format="dimension"></attr>
  <!-- 字体显示的颜色 -->
  <attr name="textColor" format="color"></attr>
  <!-- 进度的最大值 -->
  <attr name="max" format="integer"></attr>
  <!-- 是否显示文字 -->
  <attr name="textShow" format="boolean"></attr>
 </declare-styleable>

</resources>

上我们自定义类的实现代码:

package xxx.xxx.xxx;

import android.content.Context;
import android.content.res.TypedArray;
import android.graphics.Canvas;
import android.graphics.Color;
import android.graphics.Paint;
import android.graphics.RectF;
import android.graphics.Typeface;
import android.support.annotation.Nullable;
import android.util.AttributeSet;
import android.view.View;

import test.dn.com.dn_test.R;

/**
 * Created by Administrator on 2017/5/16 0016.
 */

public class CircleProgressBar extends View {

 private int max; //最大值
 private int roundColor; //圆形进度条的颜色
 private int roundProgressColor;//圆形进度条进度的颜色
 private int textColor;  //字体的颜色
 private float textSize;  //字体的大小
 private float roundWidth; //圆的宽度
 private boolean textShow; //是否显示圆
 private int progress; //当前进度
 private Paint mPaint; //画笔
 public static final int STROKE = 0;
 public static final int FILL = 1;

 public CircleProgressBar(Context context, @Nullable AttributeSet attrs) {
  super(context, attrs);
  //初始化一只笔
  mPaint = new Paint();
  //获取xml当中设置的属性,如果没有设置,则设置一个默认值
  TypedArray typedArray = context.obtainStyledAttributes(attrs , R.styleable.CustomProgressBar);
  max = typedArray.getInteger(R.styleable.CustomProgressBar_max , 100);
  roundColor = typedArray.getColor(R.styleable.CustomProgressBar_roundColor, Color.RED);
  roundProgressColor = typedArray.getColor(R.styleable.CustomProgressBar_roundProgressColor , Color.BLUE);
  textColor = typedArray.getColor(R.styleable.CustomProgressBar_textColor , Color.GREEN);
  textSize = typedArray.getDimension(R.styleable.CustomProgressBar_textSize , 55);
  roundWidth = typedArray.getDimension(R.styleable.CustomProgressBar_roundWidth , 10);
  textShow = typedArray.getBoolean(R.styleable.CustomProgressBar_textShow , true);

 }

 @Override
 protected void onDraw(Canvas canvas) {
  super.onDraw(canvas);
  //画背景圆环
  int center = getWidth() / 2;
  //设置半径
  float radius = center - roundWidth / 2;
  //设置圆圈的颜色
  mPaint.setColor(roundColor);
  mPaint.setStyle(Paint.Style.STROKE);
  mPaint.setStrokeWidth(roundWidth);//圆环的宽度
  mPaint.setAntiAlias(true);//设置抗锯齿

  //画外圈
  canvas.drawCircle(center , center ,radius , mPaint);

  //画进度百分比
  mPaint.setColor(textColor);
  mPaint.setStrokeWidth(0);
  //设置字体大小
  mPaint.setTextSize(textSize);
  mPaint.setTypeface(Typeface.DEFAULT);
  //设置笔帽
  mPaint.setStrokeCap(Paint.Cap.ROUND);
  //设置文字的摆放方式为居中
  mPaint.setTextAlign(Paint.Align.CENTER);
  //获取当前进度的值
  int percent = (int) (progress / (float)max * 100);
  String strPercent = percent + "%";
  //获取画笔的文字属性,总共有bottom , top , leading , ascent , descent 这个以后会详细讲解
  Paint.FontMetricsInt fm = mPaint.getFontMetricsInt();
  if(percent != 0){
   canvas.drawText(strPercent , getWidth() / 2 ,
     getWidth() / 2 + (fm.bottom - fm.top) / 2 - fm.bottom, mPaint);
  }
  //画圆弧
  RectF oval = new RectF(center - radius , center - radius ,center + radius , center + radius);
  mPaint.setColor(roundProgressColor);
  mPaint.setStrokeWidth(roundWidth);
  mPaint.setStyle(Paint.Style.STROKE);
  //设置笔帽
  mPaint.setStrokeCap(Paint.Cap.ROUND);
  //话进度
  canvas.drawArc(oval , 0 , 360 * progress / max , false , mPaint);
 }

 public void setProgress(int progress){
  if(progress < 0){
   throw new IllegalArgumentException("进度progress不能小于0");
  }
  if(progress > max){
   progress = max;
  }
  if(progress <= max){
   this.progress = progress;
   postInvalidate();
  }

 }
}

在我们的xml中设置控件:

 <xxx.xxx.CircleProgressBar
  android:id="@+id/progressbar"
  android:layout_width="100dp"
  android:layout_height="100dp"
  app:roundProgressColor="#ff00ff"
  app:textColor="#666666"
  app:textSize="20dp"
  app:roundWidth="15dp"
  />

Activity功能实现代码:

mProgressBar = (CircleProgressBar) findViewById(R.id.progressbar);
  mProgressBar.setOnClickListener(new View.OnClickListener() {
   @Override
   public void onClick(View v) {
    //模拟http请求
    new Thread(new Runnable() {
     @Override
     public void run() {
      while (progress <= 100){
       progress += 2;
       mProgressBar.setProgress(progress);
       //模拟网络请求,每隔100毫秒增加一个进度
       SystemClock.sleep(100);
      }
     }
    }).start();
   }
  });

完结!

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

更多精彩内容其他人还在看

老生常谈Android HapticFeedback(震动反馈)

下面小编就为大家带来一篇老生常谈Android HapticFeedback(震动反馈)。小编觉得挺不错的,现在就分享给大家,也给大家做个参考。一起跟随小编过来看看吧
收藏 0 赞 0 分享

详谈OnTouchListener与OnGestureListener的区别

下面小编就为大家带来一篇详谈OnTouchListener与OnGestureListener的区别。小编觉得挺不错的,现在就分享给大家,也给大家做个参考。一起跟随小编过来看看吧
收藏 0 赞 0 分享

Android仿知乎悬浮功能按钮FloatingActionButton效果

前段时间在看属性动画,恰巧这个按钮的效果可以用属性动画实现,下面通过本文给大家分享adroid仿知乎悬浮功能按钮FloatingActionButton效果,需要的朋友参考下吧
收藏 0 赞 0 分享

解决Android V7后自定义Toolbar、ActionBar左侧有空白问题

这篇文章主要介绍的Android V7后自定义Toolbar、ActionBar左侧有空白问题的解决方法,需要的朋友可以参考下
收藏 0 赞 0 分享

Android常见控件使用详解

这篇文章主要为大家详细介绍了Android常见控件的使用方法,包括ProgressBar进度条控件、AlertDialog对话框控件等,具有一定的参考价值,感兴趣的小伙伴们可以参考一下
收藏 0 赞 0 分享

Android实现简洁的APP更新dialog数字进度条

这篇文章主要为大家详细介绍了Android实现简洁的APP更新dialog数字进度条,具有一定的参考价值,感兴趣的小伙伴们可以参考一下
收藏 0 赞 0 分享

Android 判断当前语言环境是否是中文环境

本文主要介绍了Android 判断当前语言环境是否是中文环境的方法。具有很好的参考价值。下面跟着小编一起来看下吧
收藏 0 赞 0 分享

详谈Android中Matrix的set、pre、post的区别

下面小编就为大家带来一篇详谈Android中Matrix的set、pre、post的区别。小编觉得挺不错的,现在就分享给大家,也给大家做个参考。一起跟随小编过来看看吧
收藏 0 赞 0 分享

Android实现登录界面记住密码的存储

这篇文章主要为大家详细介绍了Android SharedPreferrences实现登录界面记住密码的存储,具有一定的参考价值,感兴趣的小伙伴们可以参考一下
收藏 0 赞 0 分享

Android 使用SharedPreferrences储存密码登录界面记住密码功能

Android存储方式有很多种,在这里所用的存储方式是SharedPreferrences, 其采用了Map数据结构来存储数据,以键值的方式存储,可以简单的读取与写入,下面通过实例代码给大家讲解下,需要的朋友参考下吧
收藏 0 赞 0 分享
查看更多