当前位置:   article > 正文

Android学习小demo(1)自定义View

Android学习小demo(1)自定义View

在Android的开发中,很多时候系统提供的View已经不能够满足我们的要求,自定义View的需求自然而然就出来了。

实现自定义的View,其实就是去扩展View类,重写其某些方法函数,把原来由Android Framework 实现的东西,让我们自己来实现自己想要的某些效果。

其本质上就是封装了一些自己想要的效果,并使之能够被Framework识别,跟普通的系统的控件一样,可以重复利用。

下面就拿一个例子开始吧,先上一张效果图:



在这里,有六个正方形的View,每一个View的背景颜色都不一样,图片也不一样,旋转的角度也不一样,其实这三个都是自定义的属性来的。

1. 自定义属性。

在 res/values/文件夹中创建一个 attrs.xml 文件,定义我们的属性。

  1. <?xml version="1.0" encoding="utf-8"?>
  2. <resources>
  3. <declare-styleable name="CustomRotateView">
  4. <attr name="drawable" format="reference"/>
  5. <attr name="degree" format="float" />
  6. <attr name="bgcolor" format="color" />
  7. </declare-styleable>
  8. </resources>

如上 name 是属性的名字, format 是属性对应值的类型, 其中reference 表明这个值是参考其他的资源文件,在xml 中使用这个属性的形式就是:"@drawable/photo1"

2. 定义好自定义属性之后,开始创建自定义的View。

很显然,一切得从继承View开始,代码如下:

  1. package com.example.apidemostudy;
  2. import android.content.Context;
  3. import android.content.res.TypedArray;
  4. import android.graphics.Bitmap;
  5. import android.graphics.Canvas;
  6. import android.graphics.Color;
  7. import android.graphics.Matrix;
  8. import android.graphics.PixelFormat;
  9. import android.graphics.drawable.Drawable;
  10. import android.util.AttributeSet;
  11. import android.util.Log;
  12. import android.view.View;
  13. public class CustomRotateView extends View {
  14. private final static String tag = "com.example.apidemostudy.CustomRotateView";
  15. private Bitmap mBitmap; // The bitmap to be drawn
  16. private int bgColor; // the BackgroundColor
  17. private float degree; // the angels to rotate
  18. private Matrix matrix; // the matrix to transform
  19. private int mWidth = 240, mHeight = 240; // The RotateImageView's height and
  20. // width
  21. private int mPivotX, mPivotY; // the pivot point to rotate by
  22. private int mTranslateX, mTranslateY; // the translation to center in
  23. // current view
  24. /**
  25. * Constructor, called when inflate the xml definition
  26. *
  27. * @param context
  28. * @param attrs
  29. */
  30. public CustomRotateView(Context context, AttributeSet attrs) {
  31. super(context, attrs);
  32. Log.v(tag, "CustomRotateView Initializing");
  33. TypedArray typedArray = context.obtainStyledAttributes(attrs,R.styleable.CustomRotateView);
  34. Drawable drawable = typedArray.getDrawable(R.styleable.CustomRotateView_drawable);
  35. degree = typedArray.getFloat(R.styleable.CustomRotateView_degree, 0);
  36. bgColor = typedArray.getColor(R.styleable.CustomRotateView_bgcolor,Color.YELLOW);
  37. typedArray.recycle();
  38. // Change to the drawable to bitmap and zoom it until the diagnoal line
  39. // is shorter than the required width and height
  40. mBitmap = zoomBitmap(drawableToBitmap(drawable), mWidth, mHeight);
  41. // Rotate axis, the central point of the bitmap
  42. mPivotX = mBitmap.getWidth() / 2;
  43. mPivotY = mBitmap.getHeight() / 2;
  44. // translation, translate the bitmap to the center of this view
  45. mTranslateX = mWidth / 2 - mPivotX;
  46. mTranslateY = mHeight / 2 - mPivotY;
  47. matrix = new Matrix();
  48. }
  49. /**
  50. * Measure the current view set it to the fixed width and height. it's ok to
  51. * use the widthMeasureSpec and heightMeasureSpec if its size is decided by
  52. * its parent.
  53. */
  54. @Override
  55. public void onMeasure(int widthMeasureSpec, int heightMeasureSpec) {
  56. setMeasuredDimension(mWidth, mHeight);
  57. }
  58. /**
  59. * Draw the current view, 1) draw background color by bgColor 2) rotate the
  60. * bitmap 3) move the bitmap to center
  61. */
  62. @Override
  63. public void onDraw(Canvas canvas) {
  64. canvas.drawColor(bgColor);
  65. matrix.reset();
  66. matrix.postRotate(degree, mPivotX, mPivotY);
  67. matrix.postTranslate(mTranslateX, mTranslateY);
  68. canvas.drawBitmap(mBitmap, matrix, null);
  69. }
  70. /**
  71. * Zoom the bitmap to make sure it will be always displayed inside the view
  72. *
  73. * @param oldBitmap
  74. * @return
  75. */
  76. private Bitmap zoomBitmap(Bitmap oldBitmap, int reqWidth, int reqHeight) {
  77. Matrix pMatrix = new Matrix();
  78. int oldWidth = oldBitmap.getWidth();
  79. int oldHeight = oldBitmap.getHeight();
  80. double diagnoal = Math.sqrt(oldWidth * oldWidth + oldHeight * oldHeight);
  81. float scaleX = (float) (reqWidth / diagnoal);
  82. float scaleY = (float) (reqHeight / diagnoal);
  83. float scale = scaleX < scaleY ? scaleX : scaleY;
  84. pMatrix.postScale(scale, scale);
  85. Bitmap bitmap = Bitmap.createBitmap(oldBitmap, 0, 0, oldWidth,
  86. oldHeight, pMatrix, true);
  87. return bitmap;
  88. }
  89. /**
  90. * Change the drawable to Bitmap
  91. *
  92. * @param drawable
  93. * @return
  94. */
  95. private Bitmap drawableToBitmap(Drawable drawable) {
  96. int w = drawable.getIntrinsicWidth();
  97. int h = drawable.getIntrinsicHeight();
  98. Bitmap.Config config = drawable.getOpacity() != PixelFormat.OPAQUE ? Bitmap.Config.ARGB_8888
  99. : Bitmap.Config.RGB_565;
  100. Bitmap bitmap = Bitmap.createBitmap(w, h, config);
  101. Canvas canvas = new Canvas(bitmap);
  102. drawable.setBounds(0, 0, w, h);
  103. drawable.draw(canvas);
  104. return bitmap;
  105. }
  106. }


自定义的View, 有以下几个步骤:

1)构造函数 

CustomRotateView(Context context, AttributeSet attrs),从xml 中解析的view, 一定要有这个构造函数,包含有attributeSet 参数。

在构造函数中,做了几件事情:

第一,利用 TypedArray 获取自定义的属性,并将其中的drawable 转化为bitmap, 将其缩小到其对角线比当前View的宽跟高都要小,这样其在旋转角度的时候,就不会有些尖尖角角跑出这个View了。

第二,设定旋转的中心点和图片的偏移量,其实就是绕着图片中心转,然后将图片移到当前View的中心。

2)OnMeasure 函数

View 在被new 出来之后,并添加到布局去的时候,到其显示在窗口,让眼睛可以看到的过程中,其实是经过了三个步骤的,measure, layout 和 draw, 对于叶子View来说,不需要去关心layout, 因为这是由其父窗口来决定的,但是Measure过程和Draw过程,却是需要View也参与在其中的,学习Android 不久,详细的过程我目前没法很好地表达出来,各位可以自己在csdn 中找一下。

OnMeasure函数会决定当前的宽高是怎么样的,在这个例子中,简单地将当前的View 的宽高,设定为240, 240,一个正方形。

3) OnDraw 函数

当测量完当前的View 大小的时候,就是画内容了。在这里只是3.1)设置背景颜色 3.2)简单地利用matrix 作一个旋转和偏移。

3. 在布局文件中用上我们自定义的View

layout/custom_layout.xml

  1. <?xml version="1.0" encoding="utf-8"?>
  2. <RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
  3. xmlns:custom="http://schemas.android.com/apk/res/com.example.apidemostudy"
  4. android:layout_width="match_parent"
  5. android:layout_height="match_parent" >
  6. <com.example.apidemostudy.CustomRotateView
  7. android:id="@+id/rotateView1"
  8. android:layout_width="240dip"
  9. android:layout_height="300dip"
  10. android:layout_alignParentLeft="true"
  11. android:layout_alignParentTop="true"
  12. custom:bgcolor="#000000"
  13. custom:degree="0"
  14. custom:drawable="@drawable/photo1" />
  15. <com.example.apidemostudy.CustomRotateView
  16. android:id="@+id/rotateView2"
  17. android:layout_width="240dip"
  18. android:layout_height="300dip"
  19. android:layout_alignParentLeft="true"
  20. android:layout_below="@+id/rotateView1"
  21. custom:bgcolor="#FF0000"
  22. custom:degree="45"
  23. custom:drawable="@drawable/photo2" />
  24. <com.example.apidemostudy.CustomRotateView
  25. android:id="@+id/rotateView3"
  26. android:layout_width="240dip"
  27. android:layout_height="300dip"
  28. android:layout_alignParentLeft="true"
  29. android:layout_below="@+id/rotateView2"
  30. custom:bgcolor="#FFFF00"
  31. custom:degree="30"
  32. custom:drawable="@drawable/photo3" />
  33. <com.example.apidemostudy.CustomRotateView
  34. android:id="@+id/rotateView4"
  35. android:layout_width="240dip"
  36. android:layout_height="300dip"
  37. android:layout_alignParentRight="true"
  38. android:layout_alignParentTop="true"
  39. custom:bgcolor="#CCCCCC"
  40. custom:degree="60"
  41. custom:drawable="@drawable/photo4" />
  42. <com.example.apidemostudy.CustomRotateView
  43. android:id="@+id/rotateView5"
  44. android:layout_width="240dip"
  45. android:layout_height="300dip"
  46. android:layout_alignParentRight="true"
  47. android:layout_below="@+id/rotateView4"
  48. custom:bgcolor="#777777"
  49. custom:degree="-30"
  50. custom:drawable="@drawable/photo5" />
  51. <com.example.apidemostudy.CustomRotateView
  52. android:id="@+id/rotateView6"
  53. android:layout_width="240dip"
  54. android:layout_height="300dip"
  55. android:layout_alignParentRight="true"
  56. android:layout_below="@+id/rotateView5"
  57. custom:bgcolor="#123456"
  58. custom:degree="-60"
  59. custom:drawable="@drawable/photo6" />
  60. </RelativeLayout>
首先要定义一个自定义的命名空间,跟系统 的命名空间区分开来,如:

xmlns:custom="http://schemas.android.com/apk/res/com.example.apidemostudy"


将上面的“Android” 字样替换成包名。

然后就是用上我们自定义的View了,用法很简单,就是直接拿着绝对路径放上去。

<com.example.apidemostudy.CustomRotateView

最后就是设置我们自定义的属性,

  1. custom:bgcolor="#000000"
  2. custom:degree="0"
  3. custom:drawable="@drawable/photo1"


背景颜色,旋转角度 ,展示的图片。

4. 最后在Activity 中放上我们的布局文件,如下:

  1. public class CustomActivity extends Activity{
  2. protected void onCreate(Bundle savedInstanceState){
  3. super.onCreate(savedInstanceState);
  4. setContentView(R.layout.custom_layout);
  5. }
  6. }


嗯,自定义View 就是这样的,下一次写一个自定义的ViewGroup.





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

闽ICP备14008679号