android弧形进度条,有详细注释的,比较简单

|
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
|
package com.demo.eric.views;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;/** * 弧形进度条 * * @author Eric * */public class ArcProgressbar extends View { public ArcProgressbar(Context context) { super(context); } public ArcProgressbar(Context context, AttributeSet attrs) { super(context, attrs); } @Override protected void onDraw(Canvas canvas) { super.onDraw(canvas); init(canvas); } private void init(Canvas canvas) { // 画弧形的矩阵区域。 rectBg = new RectF(15, 15, diameter, diameter); // 计算弧形的圆心和半径。 int cx1 = (diameter + 15) / 2; int cy1 = (diameter + 15) / 2; int arcRadius = (diameter - 15) / 2; // ProgressBar结尾和开始画2个圆,实现ProgressBar的圆角。 mPaintCircle = new Paint(); mPaintCircle.setAntiAlias(true); mPaintCircle.setColor(bgColor); canvas.drawCircle( (float) (cx1 + arcRadius * Math.cos(startAngle * 3.14 / 180)), (float) (cy1 + arcRadius * Math.sin(startAngle * 3.14 / 180)), bgStrokeWidth / 2, mPaintCircle);// 小圆 canvas.drawCircle( (float) (cx1 + arcRadius * Math.cos((180 - startAngle) * 3.14 / 180)), (float) (cy1 + arcRadius * Math.sin((180 - startAngle) * 3.14 / 180)), bgStrokeWidth / 2, mPaintCircle);// 小圆 // 弧形背景。 mPaintBg = new Paint(); mPaintBg.setAntiAlias(true); mPaintBg.setStyle(Style.STROKE); mPaintBg.setStrokeWidth(bgStrokeWidth); mPaintBg.setColor(bgColor); canvas.drawArc(rectBg, startAngle, endAngle, false, mPaintBg); // 弧形小背景。 if (showSmallBg) { mPaintSmallBg = new Paint(); mPaintSmallBg.setAntiAlias(true); mPaintSmallBg.setStyle(Style.STROKE); mPaintSmallBg.setStrokeWidth(barStrokeWidth); mPaintSmallBg.setColor(smallBgColor); canvas.drawArc(rectBg, startAngle, endAngle, false, mPaintSmallBg); } // 弧形ProgressBar。 mPaintBar = new Paint(); mPaintBar.setAntiAlias(true); mPaintBar.setStyle(Style.STROKE); mPaintBar.setStrokeWidth(barStrokeWidth); mPaintBar.setColor(barColor); canvas.drawArc(rectBg, startAngle, progress, false, mPaintBar); // 随ProgressBar移动的圆。 if (showMoveCircle) { mPaintCircle.setColor(barColor); canvas.drawCircle( (float) (cx1 + arcRadius * Math.cos(angleOfMoveCircle * 3.14 / 180)), (float) (cy1 + arcRadius * Math.sin(angleOfMoveCircle * 3.14 / 180)), bgStrokeWidth / 2, mPaintCircle);// 小圆 } invalidate(); } /** * * @param progress */ public void addProgress(int _progress) { progress += _progress; angleOfMoveCircle += _progress; System.out.println(progress); if (progress > endAngle) { progress = 0; angleOfMoveCircle = startAngle; } invalidate(); } /** * 设置弧形背景的画笔宽度。 */ public void setBgStrokeWidth(int bgStrokeWidth) { this.bgStrokeWidth = bgStrokeWidth; } /** * 设置弧形ProgressBar的画笔宽度。 */ public void setBarStrokeWidth(int barStrokeWidth) { this.barStrokeWidth = barStrokeWidth; } /** * 设置弧形背景的颜色。 */ public void setBgColor(int bgColor) { this.bgColor = bgColor; } /** * 设置弧形ProgressBar的颜色。 */ public void setBarColor(int barColor) { this.barColor = barColor; } /** * 设置弧形小背景的颜色。 */ public void setSmallBgColor(int smallBgColor) { this.smallBgColor = smallBgColor; } /** * 设置弧形的直径。 */ public void setDiameter(int diameter) { this.diameter = diameter; } /** * 是否显示小背景。 */ public void setShowSmallBg(boolean showSmallBg) { this.showSmallBg = showSmallBg; } /** * 是否显示移动的小圆。 */ public void setShowMoveCircle(boolean showMoveCircle) { this.showMoveCircle = showMoveCircle; } private int bgStrokeWidth = 44; private int barStrokeWidth = 15; private int bgColor = Color.GRAY; private int barColor = Color.RED; private int smallBgColor = Color.WHITE; private int progress = 0; private int angleOfMoveCircle = 140;// 移动小园的起始角度。 private int startAngle = 140; private int endAngle = 260; private Paint mPaintBar = null; private Paint mPaintSmallBg = null; private Paint mPaintBg = null; private Paint mPaintCircle = null; private RectF rectBg = null; /** * 直徑。 */ private int diameter = 450; private boolean showSmallBg = true;// 是否显示小背景。 private boolean showMoveCircle = true;// 是否显示移动的小园。} |
android弧形进度条,有详细注释的,比较简单的更多相关文章
- android多线程进度条
多线程实现更新android进度条. 实例教程,详细信息我已经注释 android多线程进度条 01package com.shougao.hello; 02 03import android ...
- 用layer-list实现弧形进度条
本文转载自:http://www.linuxidc.com/Linux/2013-04/82743.htm 之前我有写过如何用style或者是layer-list实现自定义的横向进度条(http:// ...
- Android 设置进度条背景
Android 设置进度条背景 直接上代码 <ProgressBar android:id="@+id/progressBar" android:layout_width=& ...
- android 自定义进度条颜色
android 自定义进度条颜色 先看图 基于产品经理各种自定义需求,经过查阅了解,下面是自己对Android自定义进度条的学习过程! 这个没法了只能看源码了,还好下载了源码, sources\b ...
- Android之进度条2
我之前有写过一篇“Android之进度条1”,那个是条形的进度条(显示数字进度),这次实现圆形进度条. 点击查看Android之进度条1:http://www.cnblogs.com/caidupin ...
- android的进度条使用
android的进度条 1.实现的效果 2.布局代码 先写一个my_browser.xml文件 存放WebView <?xml version="1.0" encoding= ...
- [WPF] 使用三种方式实现弧形进度条
1. 需求 前天看到有人问弧形进度条怎么做,我模仿了一下,成果如下图所示: 当时我第一反应是可以用 Microsoft.Toolkit.Uwp.UI.Controls 里的 RadialGauge 实 ...
- Android多种进度条使用详解
在这里,总结一下loading进度条的使用简单总结一下. 一.说起进度条,必须说说条形进度条,经常都会使用到嘛,特别是下载文件进度等等,还有像腾讯QQ安装进度条一样,有个进度总给人良好的用户体验. 先 ...
- Android loading进度条使用简单总结
在这里,总结一下loading进度条的使用简单总结一下. 一.说起进度条,必须说说条形进度条,经常都会使用到嘛,特别是下载文件进度等等,还有像腾讯QQ安装进度条一样,有个进度总给人良好的用户体验. 先 ...
随机推荐
- mac终端命令简介
mac终端命令简介(适合刚刚入手mac的新人们) 1.取得root权限 意义相当与windows中的超级管理员权限,甚至还要超出.root权限可以修改系统中的任何文件,不过对普通用户的意义不大,了解即 ...
- java里的静态变量是放在了堆内存还是栈内存?
堆区: 1.存储的全部是对象,每个对象都包含一个与之对应的class的信息.(class的目的是得到操作指令) 2.jvm只有一个堆区(heap)被所有线程共享,堆中不存放基本类型和对象引用,只存放对 ...
- a++与=++a的区别
//a++;//a=a+1; // ++a;//a=a+1; //Console.WriteLine(a++);// Console.WriteL ...
- NOI2010超级钢琴
超级钢琴 [问题描述] 小Z是一个小有名气的钢琴家,最近C博士送给了小Z一架超级钢琴,小Z希望能够用这架钢琴创作出世界上最美妙的音乐. 这架超级钢琴可以弹奏出n个音符,编号为1至n.第i个音符的美妙度 ...
- 【 D3.js 选择集与数据详解 — 1 】 使用datum()绑定数据
选择集和数据的关系是 D3 最重要的基础,在[入门 - 第 7 章]时进行过些许讲解,对于要掌握好 D3 是远远不够的.故此开设一个新的分类,专门讨论选择集与数据的关系,包括数据绑定的使用和工作原理, ...
- html的两种提交按钮submit和button
转自:http://baiying.blog.51cto.com/1068039/1319784 html按钮有两种: <input type="button" value= ...
- lightoj 1002
最短路的变形,使用spfa做. #include<set> #include<map> #include<list> #include<stack> # ...
- Jmeter初步使用二--使用jmeter做一个简单的性能测试
经过上一次的初步使用,我们懂得了Jmeter的安装与初步使用的方法.现在,我们使用Jmeter做一个简单的性能测试.该次测试,提交的参数不做参数化处理,Jmeter各元件使用将在介绍在下一博文开始介绍 ...
- Curl之Post Json
curl Post Json $ curl -i -X POST -H "'Content-type':'application/x-www-form-urlencoded', 'chars ...
- lua部分 tips
lua文件刷新 function require_ex( _mname ) if _mname == "" then return end if package.loaded[_m ...