转载请注明地址:http://blog.csdn.net/xiaanming/article/details/10298163

很多的时候,系统自带的View满足不了我们功能的需求,那么我们就需要自己来自定义一个能满足我们需求的View,自定义View我们需要先继承View,添加类的构造方法,重写父类View的一些方法,例如onDraw,为了我们自定义的View在一个项目中能够重用,有时候我们需要自定义其属性,举个很简单的例子,我在项目中的多个界面使用我自定义的View,每个界面该自定义View的颜色都不相同,这时候如果没有自定义属性,那我们是不是需要构建不同颜色的View出来呢,这样子我们的代码就会显得很沉厄,所以这时候我们就需要自定义其属性来满足我们不同的需求,自定义属性呢,我们需要在values下建立attrs.xml文件,在其中定义我们需要定义的属性,然后在自定义View中也要做相对应的修改,我们还是用一个小例子来看看自定义View和自定义属性的使用

今天带大家来自己定义一个带进度的圆形进度条,我们还是先看一下效果吧

从上面可以看出,我们可以自定义圆环的颜色,圆环进度的颜色,是否显示进度的百分比,进度百分比的颜色,以及进度是实心还是空心等等,这样子是不是很多元化很方便呢?接下来我们就来教大家怎么来定义

1.在values下面新建一个attrs.xml,现在里面定义我们的属性,不同的属性对应不同的format,属性对应的format可以参考http://blog.csdn.net/pgalxx/article/details/6766677,介绍的还是比较详细,接下来我贴上我在自定义这个进度条所用到的属性

[html] view plaincopy
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <resources>
  3. <declare-styleable name="RoundProgressBar">
  4. <attr name="roundColor" format="color"/>
  5. <attr name="roundProgressColor" format="color"/>
  6. <attr name="roundWidth" format="dimension"></attr>
  7. <attr name="textColor" format="color" />
  8. <attr name="textSize" format="dimension" />
  9. <attr name="max" format="integer"></attr>
  10. <attr name="textIsDisplayable" format="boolean"></attr>
  11. <attr name="style">
  12. <enum name="STROKE" value="0"></enum>
  13. <enum name="FILL" value="1"></enum>
  14. </attr>
  15. </declare-styleable>
  16. </resources>

2.自定义View的属性我们算是定义好了,接下来就是怎么获取属性和代码的编写了,我们需要在构造方法中获取我们自己定义的相关属性,我们先调用context.obtainStyledAttributes(attrs,R.styleable.RoundProgressBar)来获取TypedArray,然后从TypedArray获取我们定义的属性,例如

[java] view plaincopy
  1. roundColor = mTypedArray.getColor(R.styleable.RoundProgressBar_roundColor, Color.RED);
  2. roundProgressColor = mTypedArray.getColor(R.styleable.RoundProgressBar_roundProgressColor, Color.GREEN);
  3. textColor = mTypedArray.getColor(R.styleable.RoundProgressBar_textColor, Color.GREEN);
  4. textSize = mTypedArray.getDimension(R.styleable.RoundProgressBar_textSize, 15);
  5. roundWidth = mTypedArray.getDimension(R.styleable.RoundProgressBar_roundWidth, 5);
  6. max = mTypedArray.getInteger(R.styleable.RoundProgressBar_max, 100);
  7. textIsDisplayable = mTypedArray.getBoolean(R.styleable.RoundProgressBar_textIsDisplayable, true);
  8. style = mTypedArray.getInt(R.styleable.RoundProgressBar_style, 0);

上面的代码中,如roundColor = mTypedArray.getColor(R.styleable.RoundProgressBar_roundColor, Color.RED); getColor方法的第一个参数是我们在XML文件中定义的颜色,如果我们没有给我们自定义的View定义颜色,他就会使用第二个参数中的默认值,即Color.RED

3.为了方便大家理解,我将自定义View的全部代码贴出来,里面的代码我也有详细的注释

[java] view plaincopy
  1. package com.example.roundprogressbar;
  2. import android.content.Context;
  3. import android.content.res.TypedArray;
  4. import android.graphics.Canvas;
  5. import android.graphics.Color;
  6. import android.graphics.Paint;
  7. import android.graphics.RectF;
  8. import android.graphics.Typeface;
  9. import android.util.AttributeSet;
  10. import android.util.Log;
  11. import android.view.View;
  12. import com.example.circlepregress.R;
  13. /**
  14. * 仿iphone带进度的进度条,线程安全的View,可直接在线程中更新进度
  15. * @author xiaanming
  16. *
  17. */
  18. public class RoundProgressBar extends View {
  19. /**
  20. * 画笔对象的引用
  21. */
  22. private Paint paint;
  23. /**
  24. * 圆环的颜色
  25. */
  26. private int roundColor;
  27. /**
  28. * 圆环进度的颜色
  29. */
  30. private int roundProgressColor;
  31. /**
  32. * 中间进度百分比的字符串的颜色
  33. */
  34. private int textColor;
  35. /**
  36. * 中间进度百分比的字符串的字体
  37. */
  38. private float textSize;
  39. /**
  40. * 圆环的宽度
  41. */
  42. private float roundWidth;
  43. /**
  44. * 最大进度
  45. */
  46. private int max;
  47. /**
  48. * 当前进度
  49. */
  50. private int progress;
  51. /**
  52. * 是否显示中间的进度
  53. */
  54. private boolean textIsDisplayable;
  55. /**
  56. * 进度的风格,实心或者空心
  57. */
  58. private int style;
  59. public static final int STROKE = 0;
  60. public static final int FILL = 1;
  61. public RoundProgressBar(Context context) {
  62. this(context, null);
  63. }
  64. public RoundProgressBar(Context context, AttributeSet attrs) {
  65. this(context, attrs, 0);
  66. }
  67. public RoundProgressBar(Context context, AttributeSet attrs, int defStyle) {
  68. super(context, attrs, defStyle);
  69. paint = new Paint();
  70. TypedArray mTypedArray = context.obtainStyledAttributes(attrs,
  71. R.styleable.RoundProgressBar);
  72. //获取自定义属性和默认值
  73. roundColor = mTypedArray.getColor(R.styleable.RoundProgressBar_roundColor, Color.RED);
  74. roundProgressColor = mTypedArray.getColor(R.styleable.RoundProgressBar_roundProgressColor, Color.GREEN);
  75. textColor = mTypedArray.getColor(R.styleable.RoundProgressBar_textColor, Color.GREEN);
  76. textSize = mTypedArray.getDimension(R.styleable.RoundProgressBar_textSize, 15);
  77. roundWidth = mTypedArray.getDimension(R.styleable.RoundProgressBar_roundWidth, 5);
  78. max = mTypedArray.getInteger(R.styleable.RoundProgressBar_max, 100);
  79. textIsDisplayable = mTypedArray.getBoolean(R.styleable.RoundProgressBar_textIsDisplayable, true);
  80. style = mTypedArray.getInt(R.styleable.RoundProgressBar_style, 0);
  81. mTypedArray.recycle();
  82. }
  83. @Override
  84. protected void onDraw(Canvas canvas) {
  85. super.onDraw(canvas);
  86. /**
  87. * 画最外层的大圆环
  88. */
  89. int centre = getWidth()/2; //获取圆心的x坐标
  90. int radius = (int) (centre - roundWidth/2); //圆环的半径
  91. paint.setColor(roundColor); //设置圆环的颜色
  92. paint.setStyle(Paint.Style.STROKE); //设置空心
  93. paint.setStrokeWidth(roundWidth); //设置圆环的宽度
  94. paint.setAntiAlias(true);  //消除锯齿
  95. canvas.drawCircle(centre, centre, radius, paint); //画出圆环
  96. Log.e("log", centre + "");
  97. /**
  98. * 画进度百分比
  99. */
  100. paint.setStrokeWidth(0);
  101. paint.setColor(textColor);
  102. paint.setTextSize(textSize);
  103. paint.setTypeface(Typeface.DEFAULT_BOLD); //设置字体
  104. int percent = (int)(((float)progress / (float)max) * 100);  //中间的进度百分比,先转换成float在进行除法运算,不然都为0
  105. float textWidth = paint.measureText(percent + "%");   //测量字体宽度,我们需要根据字体的宽度设置在圆环中间
  106. if(textIsDisplayable && percent != 0 && style == STROKE){
  107. canvas.drawText(percent + "%", centre - textWidth / 2, centre + textSize/2, paint); //画出进度百分比
  108. }
  109. /**
  110. * 画圆弧 ,画圆环的进度
  111. */
  112. //设置进度是实心还是空心
  113. paint.setStrokeWidth(roundWidth); //设置圆环的宽度
  114. paint.setColor(roundProgressColor);  //设置进度的颜色
  115. RectF oval = new RectF(centre - radius, centre - radius, centre
  116. + radius, centre + radius);  //用于定义的圆弧的形状和大小的界限
  117. switch (style) {
  118. case STROKE:{
  119. paint.setStyle(Paint.Style.STROKE);
  120. canvas.drawArc(oval, 0, 360 * progress / max, false, paint);  //根据进度画圆弧
  121. break;
  122. }
  123. case FILL:{
  124. paint.setStyle(Paint.Style.FILL_AND_STROKE);
  125. if(progress !=0)
  126. canvas.drawArc(oval, 0, 360 * progress / max, true, paint);  //根据进度画圆弧
  127. break;
  128. }
  129. }
  130. }
  131. public synchronized int getMax() {
  132. return max;
  133. }
  134. /**
  135. * 设置进度的最大值
  136. * @param max
  137. */
  138. public synchronized void setMax(int max) {
  139. if(max < 0){
  140. throw new IllegalArgumentException("max not less than 0");
  141. }
  142. this.max = max;
  143. }
  144. /**
  145. * 获取进度.需要同步
  146. * @return
  147. */
  148. public synchronized int getProgress() {
  149. return progress;
  150. }
  151. /**
  152. * 设置进度,此为线程安全控件,由于考虑多线的问题,需要同步
  153. * 刷新界面调用postInvalidate()能在非UI线程刷新
  154. * @param progress
  155. */
  156. public synchronized void setProgress(int progress) {
  157. if(progress < 0){
  158. throw new IllegalArgumentException("progress not less than 0");
  159. }
  160. if(progress > max){
  161. progress = max;
  162. }
  163. if(progress <= max){
  164. this.progress = progress;
  165. postInvalidate();
  166. }
  167. }
  168. public int getCricleColor() {
  169. return roundColor;
  170. }
  171. public void setCricleColor(int cricleColor) {
  172. this.roundColor = cricleColor;
  173. }
  174. public int getCricleProgressColor() {
  175. return roundProgressColor;
  176. }
  177. public void setCricleProgressColor(int cricleProgressColor) {
  178. this.roundProgressColor = cricleProgressColor;
  179. }
  180. public int getTextColor() {
  181. return textColor;
  182. }
  183. public void setTextColor(int textColor) {
  184. this.textColor = textColor;
  185. }
  186. public float getTextSize() {
  187. return textSize;
  188. }
  189. public void setTextSize(float textSize) {
  190. this.textSize = textSize;
  191. }
  192. public float getRoundWidth() {
  193. return roundWidth;
  194. }
  195. public void setRoundWidth(float roundWidth) {
  196. this.roundWidth = roundWidth;
  197. }
  198. }

4.通过上面几步我们就实现了自定义View,和自定义View的属性,当然使用过程中还是有一点变化,我们必须在界面布局的最顶层加上

xmlns:android_custom="http://schemas.Android.com/apk/res/com.example.circlepregress"这个即命名空间,

  • 红色部分是自定义属性的前缀,什么意思呢?对于android系统控件我们定义其控件属性是用android:XXX="XXXXXXX",而我们自己定义的就用android_custom:XXX = "XXXXXX"
  • 绿色部分则是我们的包的名字

通过上面这两步我们就能自己定义属性了,我贴出自定义View在XML中使用情况

[java] view plaincopy
  1. <RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
  2. xmlns:android_custom="http://schemas.android.com/apk/res/com.example.circlepregress"
  3. xmlns:tools="http://schemas.android.com/tools"
  4. android:layout_width="match_parent"
  5. android:layout_height="match_parent" >
  6. <com.example.roundprogressbar.RoundProgressBar
  7. android:id="@+id/roundProgressBar2"
  8. android:layout_width="80dip"
  9. android:layout_height="80dip"
  10. android:layout_alignLeft="@+id/roundProgressBar1"
  11. android:layout_alignParentBottom="true"
  12. android:layout_marginBottom="78dp"
  13. android_custom:roundColor="#D1D1D1"
  14. android_custom:roundProgressColor="@android:color/black"
  15. android_custom:textColor="#9A32CD"
  16. android_custom:textIsDisplayable="false"
  17. android_custom:roundWidth="10dip"
  18. android_custom:textSize="18sp"/>
  19. </RelativeLayout>

今天就到此结束,如果大家有什么疑问,请留言,我会及时回复大家的

项目源码,点击下载

from: http://blog.csdn.net/xiaanming/article/details/10298163

Android 高手进阶之自定义View,自定义属性(带进度的圆形进度条)相关推荐

  1. android java 圆角_Android自定义View实现带4圆角或者2圆角的效果

    1 问题 实现任意view经过自定义带4圆角或者2圆角的效果 2 原理 1) 实现view 4圆角 我们只需要把左边的图嵌入到右边里面去,最终显示左边的图就行. 2) 实现view上2圆角 我们只需要 ...

  2. HenCoder Android 开发进阶:自定义 View 1-5 绘制顺序

    这期是 HenCoder 自定义绘制的第 1-5 期:绘制顺序 之前的内容在这里:  HenCoder Android 开发进阶 自定义 View 1-1 绘制基础  HenCoder Android ...

  3. Android Canvas进阶之自定义View实现Splash的旋转、扩散聚合、水波纹特效

    先上效果图 动画可以分割为3阶段,第一阶段是6个小圆的旋转,第二阶段是6个小圆的扩散和收缩,第三部分是水波纹特效,动画的实现也是按照这三个阶段进行实现的. 1.初始化 自定义FlashView继承Vi ...

  4. Android初级教程初谈自定义view自定义属性

    有些时候,自己要在布局文件中重复书写大量的代码来定义一个布局.这是最基本的使用,当然要掌握:但是有些场景都去对应的布局里面写对应的属性,就显得很无力.会发现,系统自带的控件无法满足我们的要求,这个时候 ...

  5. android 两边圆角,Android自定义View实现带4圆角或者2圆角的效果

    1 问题 实现任意view经过自定义带4圆角或者2圆角的效果 2 原理 1) 实现view 4圆角 我们只需要把左边的图嵌入到右边里面去,最终显示左边的图就行. 2) 实现view上2圆角 我们只需要 ...

  6. Android进阶之自定义View实战(二)九宫格手势解锁实现

    一.引言 在上篇博客Android进阶之自定义View实战(一)仿iOS UISwitch控件实现中我们主要介绍了自定义View的最基本的实现方法.作为自定义View的入门篇,仅仅介绍了Canvas的 ...

  7. Android高手进阶教程(四)之----Android 中自定义属性(attr.xml,TypedArray)的使用!

    今天我们的教程是根据前面一节扩展进行的,如果你没有看,请点击 Android高手进阶教程(三) 查看第三课,这样跟容易方便你的理解! 在xml 文件里定义控件的属性,我们已经习惯了android:at ...

  8. android canvas 手写,自定义view—Canvas实现手写板和涂鸦功能

    学习导航 第一节:http://blog..net/bobo8945510/article/details/53197727 -自定义View-自定义属性及引用 第二节:http://blog..ne ...

  9. android 动态画直线,Android使用自定义view在指定时间内匀速画一条直线的实例代码...

    本文讲述了Android使用自定义view在指定时间内匀速画一条直线的实例代码.分享给大家供大家参考,具体如下: 1.效果图: 2.自定义view实现 public class UniformLine ...

最新文章

  1. hdu 2896:病毒侵袭
  2. 知乎李大海对话阿里云贾扬清:透视AI应用难题与未来趋势
  3. VMM2012应用指南之2- 准备VMM2012虚拟机
  4. java jar包和war包_java中jar包和war包之间有什么区别
  5. C#开发微信门户及应用(25)-微信企业号的客户端管理功能
  6. 【机器学习】详解 BackPropagation 反向传播算法!
  7. [Tip]什么是3D 电影 和 4D立体电影?
  8. seg显示时间——51程序
  9. 深入理解事件循环机制
  10. Html5响应式设计与实现广场
  11. 蚂蚁三面题目(java开发岗):Java锁机制+JVM+线程池+事务+中间件
  12. 一年仅一款!坚果Pro 3终于要来了,会有人支持吗?
  13. ELK之收集haproxy日志
  14. 成都将于1月27日开启数字人民币红包活动
  15. oracle 参数脚本,oracle 查看隐含参数脚本
  16. 用JS实现自动提取身份证的出生日期
  17. Tomcat中的ResourceBundle国际化解析
  18. Revit插件 | 建模助手 V1.8.52 爆炸式更新,你确定不来看看?
  19. 201771010112罗松《面向对象程序设计(java)》第十六周学习总结
  20. docker容器获取宿主机ip地址

热门文章

  1. LuoGuP4721:【模板】分治 FFT
  2. 在python中terminal中建立mysql数据库,无法再models.py 文件中建立数据库信息
  3. 栈(stack)和堆(heap)
  4. iOS 键盘遮挡输入框万能解决方案(多个输入框)
  5. Notepad++加上xml格式化的功能
  6. Project Server的页面如何修改Text
  7. ASP.NET MVC视图引擎SPARK文档中文版
  8. 手机游戏繁荣时代,团队的N条死路
  9. (十)Java B2B2C o2o多用户商城 springcloud架构- SSO单点登录之OAuth2.0登录认证(1)
  10. SpringMVC获取参数的几种方式