Android 圓弧形進度條 自定義View

前段時間一個項目須要作相似360掃描 圓弧形進度條android

閒言碎語不要將-->canvas

1.首先重寫View 在XML layout中應用,咱們須要在Value 文件夾下新建attrs.xml安全

在attrs.xml 裏定義咱們所須要的屬性,而後就能夠像Android自帶的各類控件一less

樣在佈局文件中一一引用。ide

attrs.xml佈局

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

    <declare-styleable name="CircleProgressBar">  
        <attr name="circleColor" format="color"/>
        <attr name="circleProgressColor" format="color"/>
        <attr name="circleWidth" format="dimension"></attr>
        <attr name="textColor" format="color" />  
        <attr name="textSize" format="dimension" /> 
        <attr name="max" format="integer"></attr> 
        <attr name="textIsDisplayable" format="boolean"></attr>
        <attr name="style">
            <enum name="STROKE" value="0"></enum>
            <enum name="FILL" value="1"></enum>
        </attr>
    </declare-styleable> 

</resources>

2.接着新建一個類CircleProgressBar extends Viewpost

咱們須要在CircleProgressBar 的構造方法中獲取 本身定義的屬性。字體

TypedArray mTypedArray = context.obtainStyledAttributes(attrs,
R.styleable.CircleProgressBar);this

先獲取到TypedArray ,而後在經過TypedArray 獲取到定義的各個屬性。spa

circleColor = mTypedArray.getColor(R.styleable.CircleProgressBar_circleColor, 0xff47d8af);

mTypedArray.getColor() ,方法裏的第一個參數是咱們在attrs.xml 中定義的值,第二個參數是默認獲取不到時的默認值(即咱們沒在佈局文件中設置CircleProgressBar 的Color屬性)

TypedArray mTypedArray = context.obtainStyledAttributes(attrs,
                R.styleable.CircleProgressBar);
        
        //獲取自定義屬性和默認值
        circleColor = mTypedArray.getColor(R.styleable.CircleProgressBar_circleColor, 0xff47d8af);
        circleProgressColor = mTypedArray.getColor(R.styleable.CircleProgressBar_circleProgressColor, Color.WHITE);
        textColor = mTypedArray.getColor(R.styleable.CircleProgressBar_textColor, Color.WHITE);
        textSize = mTypedArray.getDimension(R.styleable.CircleProgressBar_textSize, 40);
        roundWidth = mTypedArray.getDimension(R.styleable.CircleProgressBar_circleWidth, 3);
        max = mTypedArray.getInteger(R.styleable.CircleProgressBar_max, 100);
        textIsDisplayable = mTypedArray.getBoolean(R.styleable.CircleProgressBar_textIsDisplayable, true);
        style = mTypedArray.getInt(R.styleable.CircleProgressBar_style, 0);
        
        mTypedArray.recycle();

 

3.下面是CircleProgressBar 的所有代碼

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

public class CircleProgressBar extends View {

    private Paint paint;
    private int circleColor;
    private int circleProgressColor;
    private int textColor;
    private float textSize;
    private float roundWidth;
    private int max;
    private int progress;
    private boolean textIsDisplayable;
    private int style;
    public static final int STROKE = 0;
    public static final int FILL = 1;
    
    public CircleProgressBar(Context context) {
        this(context, null);
    }

    public CircleProgressBar(Context context, AttributeSet attrs) {
        this(context, attrs, 0);
    }
    
    public CircleProgressBar(Context context, AttributeSet attrs, int defStyle) {
        super(context, attrs, defStyle);
        
        paint = new Paint();
        TypedArray mTypedArray = context.obtainStyledAttributes(attrs,
                R.styleable.CircleProgressBar);
        
        //獲取自定義屬性和默認值
        circleColor = mTypedArray.getColor(R.styleable.CircleProgressBar_circleColor, 0xff47d8af);
        circleProgressColor = mTypedArray.getColor(R.styleable.CircleProgressBar_circleProgressColor, Color.WHITE);
        textColor = mTypedArray.getColor(R.styleable.CircleProgressBar_textColor, Color.WHITE);
        textSize = mTypedArray.getDimension(R.styleable.CircleProgressBar_textSize, 40);
        roundWidth = mTypedArray.getDimension(R.styleable.CircleProgressBar_circleWidth, 3);
        max = mTypedArray.getInteger(R.styleable.CircleProgressBar_max, 100);
        textIsDisplayable = mTypedArray.getBoolean(R.styleable.CircleProgressBar_textIsDisplayable, true);
        style = mTypedArray.getInt(R.styleable.CircleProgressBar_style, 0);
        
        mTypedArray.recycle();
    }
    

    @Override
    protected void onDraw(Canvas canvas) {
        super.onDraw(canvas);
        
        /**
         * 畫最外層的大圓環
         */
        int centre = getWidth()/2; //獲取圓心的x座標
        int radius = (int) (centre - roundWidth/2); //圓環的半徑
        paint.setColor(circleColor); //設置圓環的顏色
        paint.setStyle(Paint.Style.STROKE); //設置空心
        paint.setStrokeWidth(roundWidth); //設置圓環的寬度
        paint.setAntiAlias(true);  //消除鋸齒 
        canvas.setDrawFilter(new PaintFlagsDrawFilter(0, Paint.ANTI_ALIAS_FLAG|Paint.FILTER_BITMAP_FLAG)); 
        canvas.drawCircle(centre, centre, radius, paint); //畫出圓環
        
        
        /**
         * 畫進度百分比
         */
        paint.setStrokeWidth(0); 
        paint.setColor(textColor);
        paint.setTextSize(textSize);
        paint.setTypeface(Typeface.DEFAULT_BOLD); //設置字體
        
        int percent = (int)(((float)progress / (float)max) * 100);  //中間的進度百分比,先轉換成float在進行除法運算,否則都爲0
        float textWidth = paint.measureText(percent + "%");   //測量字體寬度,咱們須要根據字體的寬度設置在圓環中間
        
        if(textIsDisplayable && percent != 0 && style == STROKE){
            canvas.drawText(percent + "%", centre - textWidth / 2, centre + textSize/2, paint); //畫出進度百分比
        }
        
        
        /**
         * 畫圓弧 ,畫圓環的進度
         */
        
        //設置進度是實心仍是空心
        radius = (int) (centre - roundWidth*2);
        paint.setStrokeWidth(roundWidth*2); //設置圓環的寬度
        paint.setColor(circleProgressColor);  //設置進度的顏色
        RectF oval = new RectF(centre - radius, centre - radius, centre
                + radius, centre + radius);  //用於定義的圓弧的形狀和大小的界限
        
        switch (style) {
        case STROKE:{
            paint.setStyle(Paint.Style.STROKE);
            canvas.drawArc(oval, 0, 360 * progress / max, false, paint);  //根據進度畫圓弧
            break;
        }
        case FILL:{
            paint.setStyle(Paint.Style.FILL_AND_STROKE);
            if(progress !=0)
                canvas.drawArc(oval, 0, 360 * progress / max, true, paint);  //根據進度畫圓弧
            break;
        }
        }
        
    }
    
    
    public synchronized int getMax() {
        return max;
    }

    /**
     * 設置進度的最大值
     * @param max
     */
    public synchronized void setMax(int max) {
        if(max < 0){
            throw new IllegalArgumentException("max not less than 0");
        }
        this.max = max;
    }

    /**
     * 獲取進度.須要同步
     * @return
     */
    public synchronized int getProgress() {
        return progress;
    }

    /**
     * 設置進度,此爲線程安全控件,因爲考慮多線的問題,須要同步
     * 刷新界面調用postInvalidate()能在非UI線程刷新
     * @param progress
     */
    public synchronized void setProgress(int progress) {
        if(progress < 0){
            throw new IllegalArgumentException("progress not less than 0");
        }
        if(progress > max){
            progress = max;
        }
        if(progress <= max){
            this.progress = progress;
            postInvalidate();
        }
        
    }
    
    
    public int getCricleColor() {
        return circleColor;
    }

    public void setCricleColor(int cricleColor) {
        this.circleColor = cricleColor;
    }

    public int getCricleProgressColor() {
        return circleProgressColor;
    }

    public void setCricleProgressColor(int cricleProgressColor) {
        this.circleProgressColor = cricleProgressColor;
    }

    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;
    }



}

 

4.最後說一下在佈局文件中的使用

須要在.xml 佈局文件的最外面一層加上

xmlns:android_custom="http://schemas.android.com/apk/res/com.example.circleprogress"這個即命名空間

注意:上面綠色字體部分隨意寫,橙色字體是工程的包名,別寫錯哦!

 

<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"  
    xmlns:android_custom="http://schemas.android.com/apk/res/com.example.circleprogress"
    xmlns:tools="http://schemas.android.com/tools"  
    android:layout_width="match_parent"  
    android:layout_height="match_parent" >  
  
  
    <com.example.circleprogress.CircleProgressBar  
        android:id="@+id/circleProgresBar"  
        android:layout_width="80dip"  
        android:layout_height="80dip"

        android_custom:circleColor="#47d8af"  
        android_custom:circleProgressColor="@android:color/white"  
        android_custom:textColor="@android:color/white"  
        android_custom:textIsDisplayable="true"  
        android_custom:roundWidth="2dp"  
        android_custom:textSize="40sp"/>  
</RelativeLayout> 

 

5.付效果圖一張

相關文章
相關標籤/搜索