android实现环形进度条

package cn.zyt.widgets;

import android.content.Context;
import android.graphics.Canvas;
import android.graphics.Color;
import android.graphics.Paint;
import android.graphics.Paint.Style;
import android.graphics.RectF;
import android.util.AttributeSet;
import android.view.View;
import cn.likeit.solar.R;

public class CircleProgressBar extends View {
	private int maxProgress = 100;
	private int progress = 95;
	private int progressStrokeWidth = 4;
	// 画圆所在的距形区域
	RectF oval;
	Paint paint;
	public CircleProgressBar(Context context, AttributeSet attrs) {
		super(context, attrs);
		oval = new RectF();
		paint = new Paint();
	}

	@Override
	protected void onDraw(Canvas canvas) {
		super.onDraw(canvas);
		int width = this.getWidth();
		int height = this.getHeight();
		if (width != height) {
			int min = Math.min(width, height);
			width = min;
			height = min;
		}
		canvas.drawColor(Color.TRANSPARENT); // 白色背景
		paint.setAntiAlias(true); // 设置画笔为抗锯齿
		paint.setColor(Color.parseColor("#f0f0f0")); // 设置画笔颜色
		paint.setStrokeWidth(progressStrokeWidth * 3); // 线宽
		paint.setStyle(Style.STROKE);
		// 线中心与四周的距离
		oval.left = progressStrokeWidth * 1.5f; // 左上角x
		oval.top = progressStrokeWidth * 1.5f; // 左上角y
		oval.right = width - progressStrokeWidth * 1.5f; // 左下角x
		oval.bottom = height - progressStrokeWidth * 1.5f; // 右下角y

		canvas.drawArc(oval, -90, 360, false, paint); // 绘制白色圆圈,即进度条背景

		paint.setColor(Color.parseColor("#238f31"));
		paint.setStrokeWidth(progressStrokeWidth);

		oval.left = progressStrokeWidth * 1.5f; // 左上角x
		oval.top = progressStrokeWidth * 1.5f; // 左上角y
		oval.right = width - progressStrokeWidth * 1.5f; // 左下角x
		oval.bottom = height - progressStrokeWidth * 1.5f; // 右下角y

		canvas.drawArc(oval, -90, ((float) progress / maxProgress) * 360,
				false, paint); // 绘制进度圆弧,这里是蓝色

		String text = progress + "%";
		int textHeight = height / 4;
		paint.setStrokeWidth(1);
		paint.setTextSize(textHeight);
		paint.setColor(Color.parseColor("#969696"));
		int textWidth = (int) paint.measureText(text, 0, text.length());
		paint.setStyle(Style.FILL);
		canvas.drawText(text, width / 2 - textWidth / 2, height / 2, paint);

		String status = getResources().getString(R.string.smu_status);
		textHeight = height / 6;
		paint.setColor(Color.parseColor("#c8c8c8"));
		paint.setTextSize(textHeight);
		textWidth = (int) paint.measureText(status, 0, status.length());
		canvas.drawText(status, width / 2 - textWidth / 2, height / 2
				+ textHeight * 4 / 3, paint);

	}

	public int getMaxProgress() {
		return maxProgress;
	}

	public void setMaxProgress(int maxProgress) {
		this.maxProgress = maxProgress;
	}

	public void setProgress(int progress) {
		this.progress = progress;
		this.invalidate();
	}

	/**
	 * 非UI线程调用,setProgress方法只能在UI线程种进行工作,若是其他线程则调用此方法更新状态。
	 */
	public void setProgressNotInUiThread(int progress) {
		this.progress = progress;
		this.postInvalidate();
	}
}

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值