android自定义view制作圆形进度条效果

还是我们自定View的那几个步骤:
1、自定义View的属性
2、在View的构造方法中获得我们自定义的属性
[ 3、重写onMesure ]
4、重写onDraw

1、自定义属性:

<?xml version="1.0" encoding="utf-8"?>
<resources>
 <declare-styleable name="CustomTitleView">
  <attr name="mSpeed" format="integer" />
  <attr name="mFirstColor" format="color" />
  <attr name="mSecondColor" format="color" />
  <attr name="mCircleWidth" format="dimension"/>
  <attr name="textSize" format="dimension"/>
 </declare-styleable>
</resources>

2、在View的构造方法中获得我们自定义的属性

/**
 * 当前进度
 */
 private int mProgress;
 /**
 * 第一圈的颜色
 */
 private int mFirstColor;
 /**
 * 第二圈的颜色
 */
 private int mSecondColor;
 /**
 * 圈的宽度
 */
 private int mCircleWidth;
 /**
 * 速度
 */
 private int mSpeed;
 /**
 * 中间进度百分比的字符串的字体
 */
 private float textSize;
 private boolean isNext = false;
 private Paint mPaint; 

 public CustomTitleView(Context context, AttributeSet attrs) {
  super(context, attrs);
  TypedArray typearray = context.obtainStyledAttributes(attrs, R.styleable.CustomTitleView);
  int count= typearray.getIndexCount();
  for(int i=0;i<count;i++){
   int attr =typearray.getIndex(i);
   switch(attr){
    case R.styleable.CustomTitleView_mFirstColor:
     mFirstColor=typearray.getColor(attr,Color.BLACK);
     break;
    case R.styleable.CustomTitleView_mSecondColor:
     mSecondColor=typearray.getColor(attr,Color.RED);
     break;
    case R.styleable.CustomTitleView_mCircleWidth:
     mCircleWidth = typearray.getDimensionPixelSize(attr,(int)TypedValue.applyDimension(
       TypedValue.COMPLEX_UNIT_PX,20,getResources().getDisplayMetrics()));
     break; 

    case R.styleable.CustomTitleView_textSize:
     textSize = typearray.getDimensionPixelSize(attr,(int)TypedValue.applyDimension(
       TypedValue.COMPLEX_UNIT_PX,30,getResources().getDisplayMetrics()));
     break;
    case R.styleable.CustomTitleView_mSpeed:
     mSpeed = typearray.getInt(attr,100);// 默认100
     break;
   }
  }
  Log.v("----",mSpeed+"");
  typearray.recycle();
  mPaint = new Paint();
  new Thread()
  {
   public void run()
   {
    while (true)
    {
     mProgress++;
     if (mProgress == 360)
     {
      mProgress = 0;
      if (!isNext)
       isNext = true;
      else
       isNext = false;
     }
     postInvalidate();
     try
     {
      Thread.sleep(mSpeed);
     } catch (InterruptedException e)
     {
      e.printStackTrace();
     }
    }
   };
  }.start();
 }

3、直接重写onDraw,这不需要重写onMeasure

protected void onMeasure(int widthMeasureSpec, int heightMeasureSpec){
    super.onMeasure(widthMeasureSpec, heightMeasureSpec);
 }
 protected void onDraw(Canvas canvas)
 {
  /**
  * 画进度百分比
  */
  mPaint.setStrokeWidth(0);
  mPaint.setColor(Color.BLACK);
  mPaint.setTextSize(textSize);
  mPaint.setTypeface(Typeface.DEFAULT_BOLD); //设置字体
  int percent = (int)(((float)mProgress / (float)360) * 100);
  int centre = getWidth() / 2; // 获取圆心的x坐标
  int radius = centre - mCircleWidth / 2;// 半径
  float textWidth = mPaint.measureText(percent + "%"); //测量字体宽度,我们需要根据字体的宽度设置在圆环中间
  canvas.drawText(percent + "%",centre-textWidth/ 2,centre+textSize/2, mPaint); //画出进度百分比
  mPaint.setStrokeWidth(mCircleWidth); // 设置圆环的宽度
  mPaint.setAntiAlias(true); // 消除锯齿
  mPaint.setStyle(Paint.Style.STROKE); // 设置空心
  RectF oval = new RectF(centre - radius, centre - radius, centre + radius, centre + radius); // 用于定义的圆弧的形状和大小的界限
  if(isNext){
   mPaint.setColor(mSecondColor); // 设置圆环的颜色
   canvas.drawCircle(centre, centre, radius, mPaint); // 画出圆环
   mPaint.setColor(mFirstColor); // 设置圆环的颜色
   canvas.drawArc(oval, -90, mProgress, false, mPaint); // 根据进度画圆弧
  }else{
   mPaint.setColor(mFirstColor); // 设置圆环的颜色
   canvas.drawCircle(centre, centre, radius, mPaint); // 画出圆环
   mPaint.setColor(mSecondColor); // 设置圆环的颜色
   canvas.drawArc(oval, -90, mProgress, false, mPaint); // 根据进度画圆弧
  }
 }

activity_main.xml

<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
 xmlns:custom="http://schemas.android.com/apk/res-auto"
 android:layout_width="match_parent"
 android:layout_height="match_parent"
 android:padding="20dp"
 >
 <view.CustomTitleView
  android:layout_width="200dp"
  android:layout_height="400dp"
  custom:mSpeed="50"
  custom:mFirstColor="#7300e6"
  custom:mSecondColor="#39ac39"
  custom:mCircleWidth="10px"
  custom:textSize="20px"
  android:id="@+id/one"
 />
 <view.CustomTitleView
  android:layout_toEndOf="@id/one"
  android:layout_width="200dp"
  android:layout_height="400dp"
  custom:mSpeed="100"
  custom:mFirstColor="#0040ff"
  custom:mSecondColor="#40ff00"
  custom:mCircleWidth="20px"
  custom:textSize="30px"
  />
</RelativeLayout> 

效果预览

源码下载:http://xiazai.jb51.net/201701/yuanma/AndroidProgressbar(jb51.net).rar

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

(0)

相关推荐

  • Android编程实现WebView添加进度条的方法

    本文实例讲述了Android编程实现WebView添加进度条的方法.分享给大家供大家参考,具体如下: 标准的XML界面 <?xml version="1.0" encoding="utf-8"?> <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" android:layout_width="match_parent"

  • Android动态自定义圆形进度条

    效果图: A.绘制圆环,圆弧,文本 //1.画圆环 //原点坐标 float circleX = width / 2; float circleY = width / 2; //半径 float radius = width / 2 - roundWidth / 2; //设置画笔的属性 paint.setColor(roundColor); paint.setStrokeWidth(roundWidth); paint.setStyle(Paint.Style.STROKE); canvas.

  • Android自定义控件实现圆形进度条

    项目中常用到的圆形进度条有好多个,从网上搜到的自定义进度条多是封装的比较好的代码,但是不利于初学者,现在本博客就教给大家如何一步步实现自定义进度条的效果 相关视频链接: http://edu.csdn.net/course/detail/3719/65396 先看效果如图- 代码实现过程–main布局 这个布局中就是一个简单的引用 <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" xm

  • Android编程之ProgressBar圆形进度条颜色设置方法

    本文实例讲述了Android ProgressBar圆形进度条颜色设置方法.分享给大家供大家参考,具体如下: 你是不是还在为设置进度条的颜色而烦恼呢--别着急,且看如下如何解决. ProgressBar分圆形进度条和水平进度条 我这里就分享下如何设置圆形进度条的颜色吧,希望对大家会有帮助. 源码如下: 布局文件代码: <ProgressBar android:id="@+id/progressbar" android:layout_width="wrap_content

  • Android自定义Material进度条效果

    首先看下效果图 布局文件: <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" xmlns:tools="http://schemas.android.com/tools" xmlns:app="http://schemas.android.com/apk/res-auto" android:layout_width="match_par

  • Android实现环形进度条的实例

    Android实现环形进度条的效果图如下: 自定义控件:AttendanceProgressBar 代码如下: public class AttendanceProgressBar extends View { // 画圆环底部的画笔 private Paint mCirclePaint; // 画圆环的画笔 private Paint mRingPaint; // 画字体的画笔 private Paint mTextPaint; // 圆形颜色 private int mCircleColor

  • Android编程基于自定义View实现绚丽的圆形进度条功能示例

    本文实例讲述了Android编程基于自定义View实现绚丽的圆形进度条功能.分享给大家供大家参考,具体如下: 本文包含两个组件,首先上效果图: 1.ProgressBarView1(支持拖动): 2.ProgressBarView2(不同进度值显示不同颜色,不支持拖拽):   代码不多,注释也比较详细,全部贴上了: (一)ProgressBarView1: /** * 自定义绚丽的ProgressBar. */ public class ProgressBarView1 extends View

  • Android编程实现类似于圆形ProgressBar的进度条效果

    本文实例讲述了Android编程实现类似于圆形ProgressBar的进度条效果.分享给大家供大家参考,具体如下: 我们要实现一个类似于小米分享中的圆形播放进度条,android自带的圆形ProgressBar是默认自动旋转的,所以无法实现,于是我们想到了使用自定义一个View,来实现这种效果. 首先来看看自己定义的View package cn.easymobi.application.bell.common; import android.content.Context; import an

  • Android自定义view实现进度条指示效果

    先看看效果图: 首先是布局文件 <FrameLayout android:layout_width="match_parent" android:layout_marginLeft="10dp" android:layout_marginRight="10dp" android:layout_height="wrap_content"> <ProgressBar android:id="@+id/p

  • Android实现带数字的圆形进度条(自定义进度条)

    开发 设计搞了一个带圆形进度的进度条,在GitHub上逛了一圈,发现没有,自己撸吧. 先看界面效果: 主要思路是写一个继承ProgressBar的自定义View,不废话,直接上代码: package com.fun.progressbarwithnumber; import android.content.Context; import android.content.res.TypedArray; import android.graphics.Canvas; import android.g

  • Android带圆形数字进度的自定义进度条示例

    开发 设计搞了一个带圆形进度的进度条,在GitHub上逛了一圈,发现没有,自己撸吧. 先看界面效果: 主要思路是写一个继承ProgressBar的自定义View,不废话,直接上代码: package com.fun.progressbarwithnumber; import android.content.Context; import android.content.res.TypedArray; import android.graphics.Canvas; import android.g

随机推荐