当前位置:   article > 正文

自定义View详解_自定义view定义变量

自定义view定义变量

一、前言

自定义View可能大家平常都会使用到,但是一般都是复制一个别人的代码,还没有过完全自己写的自定义view吧。自定义view一般使用在自定义进度条时会用到。自定义可以简单理解为封装的TextView、Button等都是继承自View。

二、概述

自定义View需要学习三个变量属性;Canvas(画布)、Paint(画笔)、Rect(尺寸)

1、Canvas(画布)类

可以用来实现各种图形的绘制工作,如绘制直线、矩形、圆等等    

1、绘制直线:canvas.drawLine(float startX, float startY, float stopX, float stopY, Paintpaint) //画线,参数一起始点的x轴位置,                           参数二起始点的y轴位置,参数三终点的x轴水平位置,参数四y轴垂直位置,最后一个参数为Paint 画刷对象。

2、绘制矩形:canvas.drawRect(RectF rect, Paint paint) //绘制区域和画笔样式

3、绘制圆形:canvas.drawCircle();参数一是中心点的x轴,参数二是中心点的y轴,参数三是半径,参数四是paint对象;

4、绘制字符:canvas.drawText(String text, float x, floaty, Paint paint) //渲染文本,Canvas类除了上面的还可以描绘文字,参                             数一是String类型的文本,参数二x轴,参数三y轴,参数四是Paint对象。

5、绘制图形:canvas.drawBitmap(Bitmap bitmap, Rect src, Rect dst, Paint paint) //参数一就是我们常规的Bitmap对象,参数                           二是源区域(这里是bitmap),参数三是目标区域(应该在canvas的位置和大小),参数四是Paint画刷对象

6、绘制圆弧:canvas.drawArc();参数一是RectF对象,一个矩形区域椭圆形的界限用于定义在形状、大小、电弧,参数二是起                          始角(度)在电弧的开始, 参数三扫描角(度)开始顺时针测量的,参数四是如果这是真的话,包括椭圆中心的电弧,并                          关闭它,如果它是假这将是一个弧线,参数五是Paint对象;

7、绘制一个路径:canvas.drawPath(Path path, Paint paint) //参数一为Path路径对象

8、画点:canvas.drawPoint(float x, float y, Paint paint) //参数一水平x轴,参数二垂直y轴,第三个参数为Paint对象。

9、画椭圆:canvas.drawOval(RectF oval, Paint paint)//参数一是扫描区域,参数二为paint对象;

2、Paint(画笔)类

要绘制图形,首先得调整画笔,按照自己的开发需要设置画笔的相关属性

  1、setAntiAlias(boolean aa) // 是否抗锯齿

  2、setColor(int color) // 设置颜色,这里Android内部定义的有Color类包含了一些常见颜色定义

  3、setARGB(int a, int r, int g, int b) // 设置 Paint对象颜色,参数一为alpha透明值

  4、setAlpha(int a) // 设置alpha不透明度,范围为0~255

  5、setTextSize(float textSize) // 设置字体大小

  6、setStyle():设置画笔的风格(空心或实心)

  7、setStrokeWidth():设置空心边框的宽度

  8、getColor():获取画笔的颜色

  9、setTextScaleX(float scaleX) // 设置文本缩放倍数,1.0f为原始

 10、setUnderlineText(booleanunderlineText) // 设置下划线

3、Rect(尺寸)类

设置画布大小new Rect(int left, int top, int right, int bottom)

4、代码讲解

(1)新定义一个类,继承View,需要重新OnDraw方法,在这里就是对页面进行重新画图。效果图如下,可能不太好看。

(2)实现代码:其中在代码中都有详细解释

  1. public class CustomViewActivity extends View{
  2. @SuppressWarnings("unused")
  3. private RectF rectBounds = new RectF();
  4. private Paint barPaint = new Paint();
  5. private RectF circleBounds = new RectF();
  6. int progress = 0;
  7. int spinSpeed=1;
  8. public CustomViewActivity(Context context, @Nullable AttributeSet attrs) {
  9. super(context, attrs);
  10. }
  11. /*
  12. * 当View的大小发生改变时,会调用此方法
  13. * */
  14. @Override
  15. protected void onSizeChanged(int w, int h, int oldw, int oldh) {
  16. super.onSizeChanged(w, h, oldw, oldh);
  17. rectBounds = new RectF(5, 5, 100, 100);
  18. invalidate();
  19. spinHandler.sendEmptyMessage(0);
  20. }
  21. /*
  22. * 这个方法就是自定义View的核心。绘制各种图形
  23. * */
  24. @Override
  25. protected void onDraw(Canvas canvas) {
  26. super.onDraw(canvas);
  27. // 获取传入的padding值
  28. /* final int paddingLeft = getPaddingLeft();
  29. final int paddingRight = getPaddingRight();
  30. final int paddingTop = getPaddingTop();
  31. final int paddingBottom = getPaddingBottom();
  32. // 获取绘制内容的高度和宽度(考虑了四个方向的padding值)
  33. int width = getWidth() - paddingLeft - paddingRight ;
  34. int height = getHeight() - paddingTop - paddingBottom ;*/
  35. // 创建画笔
  36. Paint p = new Paint();
  37. p.setColor(Color.RED);// 设置红色
  38. canvas.drawText("画文本123:", 0, 50, p);// 画文本
  39. p.setAntiAlias(true);// 设置画笔的锯齿效果。 true是去除,大家一看效果就明白了
  40. /*
  41. * 第一个参数为线性起点的x坐标
  42. * 第二个参数为线性起点的y坐标
  43. * 第三个参数为线性终点的x坐标
  44. * 第四个参数为线性终点的y坐标
  45. * 第五个参数为实现渐变效果的颜色的组合
  46. * 第六个参数为前面的颜色组合中的各颜色在渐变中占据的位置(比重),如果为空,则表示上述颜色的集合在渐变中均匀出现
  47. * 第七个参数为渲染器平铺的模式,一共有三种
  48. * 1、CLAMP:边缘拉伸
  49. * 2、REPEAT:在水平和垂直两个方向上重复,相邻图像没有间隙
  50. * 3、MIRROR:以镜像的方式在水平和垂直两个方向上重复,相邻图像有间隙
  51. * */
  52. Shader mShader = new LinearGradient(0, 0, 10, 10,
  53. new int[] { Color.RED, Color.BLUE, Color.YELLOW,
  54. Color.GREEN }, null, Shader.TileMode.REPEAT); //
  55. p.setShader(mShader);
  56. //画圆,横坐标、纵坐标
  57. canvas.drawCircle(120, 100, 100, p);// 大圆
  58. //圆形进度条
  59. barPaint.setColor(Color.RED);
  60. //设置抗锯齿,如果不设置,加载位图的时候可能会出现锯齿状的边界,如果设置,边界就会变的稍微有点模糊,锯齿就看不到了。
  61. barPaint.setAntiAlias(true);
  62. /*
  63. * // Style有3种类型:
  64. // 类型1:Paint.Style.FILLANDSTROKE(描边+填充)
  65. // 类型2:Paint.Style.FILL(只填充不描边)
  66. // 类型3:Paint.Style.STROKE(只描边不填充)
  67. * */
  68. barPaint.setStyle(Paint.Style.STROKE);
  69. //设置画笔的粗细
  70. barPaint.setStrokeWidth(20);
  71. //定义位置
  72. circleBounds = new RectF(200, 200, 264, 264);
  73. //
  74. /*
  75. * 画弧形的大小和开始位置
  76. * 参数一:位置
  77. * 参数二:开始角度
  78. * 参数三:弧形长度
  79. * 参数4true:则为包括圆形中心的电弧。
  80. * 参数五:圆弧的颜色和圆弧宽度等信息
  81. * */
  82. canvas.drawArc(circleBounds, progress - 90, 50, false,
  83. barPaint);
  84. }
  85. /*
  86. * 开启定时器功能,实现实时刷新页面旋转
  87. * */
  88. private Handler spinHandler = new Handler() {
  89. /**
  90. * This is the code that will increment the progress variable
  91. * and so spin the wheel
  92. */
  93. @Override
  94. public void handleMessage(Message msg) {
  95. //页面重新加载
  96. invalidate();
  97. progress += spinSpeed;
  98. if(progress<240){
  99. spinSpeed=3;
  100. }else{
  101. spinSpeed=1;
  102. }
  103. if (progress > 360) {
  104. progress = 0;
  105. }
  106. spinHandler.sendEmptyMessageDelayed(0, 0);
  107. //super.handleMessage(msg);
  108. }
  109. };
  110. }

(3)在xml中的调用方式

  1. <com.fei.main.module.viewSlide.CustomViewActivity
  2. android:layout_width="wrap_content"
  3. android:layout_height="wrap_content"
  4. android:layout_gravity="center"
  5. />

5、自定义xml属性

  • 有些时候需要一些系统所没有的属性,称为自定义属性
  • 使用步骤有如下: 
  • 1、在values目录下创建自定义属性的xml文件
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <resources>
  3. <declare-styleable name="ProgressWheel">
  4. <attr name="text" format="string" />
  5. <attr name="textColor" format="color" />
  6. <attr name="textSize" format="dimension" />
  7. <attr name="barColor" format="color" />
  8. <attr name="rimColor" format="color" />
  9. <attr name="rimWidth" format="dimension" />
  10. <attr name="spinSpeed" format="dimension" />
  11. <attr name="delayMillis" format="integer" />
  12. <attr name="circleColor" format="color" />
  13. <attr name="radius" format="dimension" />
  14. <attr name="barWidth" format="dimension" />
  15. <attr name="barLengt" format="dimension" />
  16. <attr name="contourColor" format="color"/>
  17. <attr name="contourSize" format="dimension"/>
  18. </declare-styleable>
  19. </resources>
  • 2、在自定义View的构造方法中解析自定义属性的值
  1. public ProgressWheel(Context context, AttributeSet attrs) {
  2. super(context, attrs);
  3. parseAttributes(context.obtainStyledAttributes(attrs,
  4. R.styleable.ProgressWheel));
  5. }
  6. private void parseAttributes(TypedArray a) {
  7. barWidth = (int) a.getDimension(R.styleable.ProgressWheel_barWidth,
  8. barWidth);
  9. rimWidth = (int) a.getDimension(R.styleable.ProgressWheel_rimWidth,
  10. rimWidth);
  11. spinSpeed = (int) a.getDimension(R.styleable.ProgressWheel_spinSpeed,
  12. spinSpeed);
  13. delayMillis = a.getInteger(R.styleable.ProgressWheel_delayMillis,
  14. delayMillis);
  15. if (delayMillis < 0) {
  16. delayMillis = 0;
  17. }
  18. barColor = a.getColor(R.styleable.ProgressWheel_barColor, barColor);
  19. barLengt = (int) a.getDimension(R.styleable.ProgressWheel_barLengt,
  20. barLengt);
  21. textSize = (int) a.getDimension(R.styleable.ProgressWheel_textSize,
  22. textSize);
  23. textColor = a.getColor(R.styleable.ProgressWheel_textColor,
  24. textColor);
  25. //if the text is empty , so ignore it
  26. if (a.hasValue(R.styleable.ProgressWheel_text)) {
  27. setText(a.getString(R.styleable.ProgressWheel_text));
  28. }
  29. rimColor = a.getColor(R.styleable.ProgressWheel_rimColor,
  30. rimColor);
  31. circleColor = a.getColor(R.styleable.ProgressWheel_circleColor,
  32. circleColor);
  33. contourColor = a.getColor(R.styleable.ProgressWheel_contourColor, contourColor);
  34. contourSize = a.getDimension(R.styleable.ProgressWheel_contourSize, contourSize);
  35. // Recycle
  36. a.recycle();
  37. }
  • 3、在布局文件中使用自定义属性
    1. <com.fei.main.module.dialog.ProgressWheel
    2. android:id="@+id/progressBar_dialog"
    3. android:layout_width="50dp"
    4. android:layout_height="50dp"
    5. ProgressWheel:text="JD"
    6. ProgressWheel:textColor="#fff"
    7. ProgressWheel:textSize="14dp"
    8. ProgressWheel:rimColor="#fff"
    9. ProgressWheel:barLengt="30dp"
    10. ProgressWheel:barColor="#339BB9"
    11. ProgressWheel:contourColor="@color/grey"
    12. ProgressWheel:barWidth="4dp"
    13. ProgressWheel:rimWidth="5dp"
    14. ProgressWheel:spinSpeed="3dp" />

     

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/正经夜光杯/article/detail/759825
推荐阅读
相关标签
  

闽ICP备14008679号