天天看點

android 圓形漸變進度條,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.graphics.Paint;

import android.graphics.RectF;

import android.graphics.SweepGradient;

import android.util.AttributeSet;

import android.view.View;

import com.fx.R;

public class CompletedView extends View {

// 畫實心圓的畫筆

private Paint mCirclePaint;

// 畫圓環的畫筆

private Paint mRingPaint;

// 畫圓環的畫筆背景色

private Paint mRingPaintBg;

// 畫字型的畫筆

private Paint mTextPaint;

// 圓形顔色

private int mCircleColor;

// 圓環顔色

private int mRingColor;

// 圓環背景顔色

private int mRingBgColor;

// 半徑

private float mRadius;

// 圓環半徑

private float mRingRadius;

// 圓環寬度

private float mStrokeWidth;

// 圓心x坐标

private int mXCenter;

// 圓心y坐标

private int mYCenter;

// 字的長度

private float mTxtWidth;

// 字的高度

private float mTxtHeight;

// 總進度

private int mTotalProgress = 100;

// 目前進度

private int mProgress;

private String string;

public CompletedView(Context context, AttributeSet attrs) {

super(context, attrs);

// 擷取自定義的屬性

initAttrs(context, attrs);

initVariable();

}

//屬性

private void initAttrs(Context context, AttributeSet attrs) {

TypedArray typeArray = context.getTheme().obtainStyledAttributes(attrs,

R.styleable.TasksCompletedView, 0, 0);

mRadius = typeArray.getDimension(R.styleable.TasksCompletedView_radius, 80);

mStrokeWidth = typeArray.getDimension(R.styleable.TasksCompletedView_strokeWidth, 10);

mCircleColor = typeArray.getColor(R.styleable.TasksCompletedView_circleColor, 0xFFFFFFFF);

mRingColor = typeArray.getColor(R.styleable.TasksCompletedView_ringColor, 0xFFFFFFFF);

mRingBgColor = typeArray.getColor(R.styleable.TasksCompletedView_ringBgColor, 0xFFFFFFFF);

mRingRadius = mRadius + mStrokeWidth / 2;

}

RectF oval;

//初始化畫筆

private void initVariable() {

oval = new RectF();

//内圓

mCirclePaint = new Paint();

mCirclePaint.setAntiAlias(true);

mCirclePaint.setColor(mCircleColor);

mCirclePaint.setStyle(Paint.Style.FILL);

mCirclePaint.setStrokeCap(Paint.Cap.ROUND);

//外圓弧背景

mRingPaintBg = new Paint();

mRingPaintBg.setAntiAlias(true);

mRingPaintBg.setColor(mRingBgColor);

mRingPaintBg.setStyle(Paint.Style.STROKE);

mRingPaintBg.setStrokeWidth(mStrokeWidth);

//外圓弧

mRingPaint = new Paint();

mRingPaint.setAntiAlias(true);

// mRingPaint.setColor(mRingColor);

mRingPaint.setStyle(Paint.Style.STROKE);

mRingPaint.setStrokeWidth(mStrokeWidth);

mRingPaint.setStrokeCap(Paint.Cap.ROUND);//設定線冒樣式,有圓 有方

//中間字

mTextPaint = new Paint();

mTextPaint.setAntiAlias(true);

mTextPaint.setStyle(Paint.Style.FILL);

mTextPaint.setColor(mRingColor);

mTextPaint.setTextSize(mRadius / 2);

Paint.FontMetrics fm = mTextPaint.getFontMetrics();

mTxtHeight = (int) Math.ceil(fm.descent - fm.ascent);

}

SweepGradient sweepGradient;

//畫圖

@Override

protected void onDraw(Canvas canvas) {

mXCenter = getWidth() / 2;

mYCenter = getHeight() / 2;

//内圓

canvas.drawCircle(mXCenter, mYCenter, mRadius, mCirclePaint);

//外圓弧背景

RectF oval1 = new RectF();

oval1.left = (mXCenter - mRingRadius);

oval1.top = (mYCenter - mRingRadius);

oval1.right = mRingRadius * 2 + (mXCenter - mRingRadius);

oval1.bottom = mRingRadius * 2 + (mYCenter - mRingRadius);

canvas.drawArc(oval1, 0, 360, false, mRingPaintBg); //圓弧所在的橢圓對象、圓弧的起始角度、圓弧的角度、是否顯示半徑連線

//外圓弧

if (mProgress > 0 ) {

oval.left = (mXCenter - mRingRadius);

oval.top = (mYCenter - mRingRadius);

oval.right = mRingRadius * 2 + (mXCenter - mRingRadius);

oval.bottom = mRingRadius * 2 + (mYCenter - mRingRadius);

if (sweepGradient==null) {

int[] arcColors= new int[]{mRingColor,Color.parseColor("#b05e39"),mRingColor};

float[] arcPostion=new float[]{0.0f,0.5f,0.95f};

// sweepGradient = new SweepGradient(mXCenter, mYCenter, mRingColor,Color.parseColor("#b05e39"));

sweepGradient = new SweepGradient(mXCenter, mYCenter, arcColors,arcPostion);

Matrix matrix = new Matrix();

matrix.setRotate(-90,mXCenter,mYCenter);

sweepGradient.setLocalMatrix(matrix);

mRingPaint.setShader(sweepGradient);

}

canvas.drawArc(oval, -90, ((float)mProgress / mTotalProgress) * 360, false, mRingPaint); //

//字型

String txt = mProgress + "%";

mTxtWidth = mTextPaint.measureText(txt, 0, txt.length());

canvas.drawText(txt, mXCenter - mTxtWidth / 2, mYCenter + mTxtHeight / 4, mTextPaint);

}

}

public void setText(String string){

}

//設定進度

public void setProgress(int progress) {

mProgress = progress;

postInvalidate();//重繪

}

}

以上就是本文的全部内容,希望對大家的學習有所幫助,也希望大家多多支援我們。