最近由于工作的变动,导致的博客的更新计划有点被打乱,希望可以尽快脉动回来~

今天给大家带来一篇自定义ViewGroup的教程,说白了,就是教大家如何自定义ViewGroup,如果你对自定义ViewGroup还不是很了解,或者正想学习如何自定义,那么你可以好好看看这篇博客。

1、概述

在写代码之前,我必须得问几个问题:

1、ViewGroup的职责是啥?

ViewGroup相当于一个放置View的容器,并且我们在写布局xml的时候,会告诉容器(凡是以layout为开头的属性,都是为用于告诉容器的),我们的宽度(layout_width)、高度(layout_height)、对齐方式(layout_gravity)等;当然还有margin等;于是乎,ViewGroup的职能为:给childView计算出建议的宽和高和测量模式 ;决定childView的位置;为什么只是建议的宽和高,而不是直接确定呢,别忘了childView宽和高可以设置为wrap_content,这样只有childView才能计算出自己的宽和高。

2、View的职责是啥?

View的职责,根据测量模式和ViewGroup给出的建议的宽和高,计算出自己的宽和高;同时还有个更重要的职责是:在ViewGroup为其指定的区域内绘制自己的形态。

3、ViewGroup和LayoutParams之间的关系?

大家可以回忆一下,当在LinearLayout中写childView的时候,可以写layout_gravity,layout_weight属性;在RelativeLayout中的childView有layout_centerInParent属性,却没有layout_gravity,layout_weight,这是为什么呢?这是因为每个ViewGroup需要指定一个LayoutParams,用于确定支持childView支持哪些属性,比如LinearLayout指定LinearLayout.LayoutParams等。如果大家去看LinearLayout的源码,会发现其内部定义了LinearLayout.LayoutParams,在此类中,你可以发现weight和gravity的身影。

2、View的3种测量模式

上面提到了ViewGroup会为childView指定测量模式,下面简单介绍下三种测量模式:

EXACTLY:表示设置了精确的值,一般当childView设置其宽、高为精确值、match_parent时,ViewGroup会将其设置为EXACTLY;

AT_MOST:表示子布局被限制在一个最大值内,一般当childView设置其宽、高为wrap_content时,ViewGroup会将其设置为AT_MOST;

UNSPECIFIED:表示子布局想要多大就多大,一般出现在AadapterView的item的heightMode中、ScrollView的childView的heightMode中;此种模式比较少见。

注:上面的每一行都有一个一般,意思上述不是绝对的,对于childView的mode的设置还会和ViewGroup的测量mode有一定的关系;当然了,这是第一篇自定义ViewGroup,而且绝大部分情况都是上面的规则,所以为了通俗易懂,暂不深入讨论其他内容。

3、从API角度进行浅析

上面叙述了ViewGroup和View的职责,下面从API角度进行浅析。

View的根据ViewGroup传人的测量值和模式,对自己宽高进行确定(onMeasure中完成),然后在onDraw中完成对自己的绘制。

ViewGroup需要给View传入view的测量值和模式(onMeasure中完成),而且对于此ViewGroup的父布局,自己也需要在onMeasure中完成对自己宽和高的确定。此外,需要在onLayout中完成对其childView的位置的指定。

4、完整的例子

需求:我们定义一个ViewGroup,内部可以传入0到4个childView,分别依次显示在左上角,右上角,左下角,右下角。

1、决定该ViewGroup的LayoutParams

对于我们这个例子,我们只需要ViewGroup能够支持margin即可,那么我们直接使用系统的MarginLayoutParams

[java] view plaincopy
  1. @Override
  2. public ViewGroup.LayoutParams generateLayoutParams(AttributeSet attrs)
  3. {
  4. return new MarginLayoutParams(getContext(), attrs);
  5. }

重写父类的该方法,返回MarginLayoutParams的实例,这样就为我们的ViewGroup指定了其LayoutParams为MarginLayoutParams。

2、onMeasure

在onMeasure中计算childView的测量值以及模式,以及设置自己的宽和高:

[java] view plaincopy
  1. /**
  2. * 计算所有ChildView的宽度和高度 然后根据ChildView的计算结果,设置自己的宽和高
  3. */
  4. @Override
  5. protected void onMeasure(int widthMeasureSpec, int heightMeasureSpec)
  6. {
  7. /**
  8. * 获得此ViewGroup上级容器为其推荐的宽和高,以及计算模式
  9. */
  10. int widthMode = MeasureSpec.getMode(widthMeasureSpec);
  11. int heightMode = MeasureSpec.getMode(heightMeasureSpec);
  12. int sizeWidth = MeasureSpec.getSize(widthMeasureSpec);
  13. int sizeHeight = MeasureSpec.getSize(heightMeasureSpec);
  14. // 计算出所有的childView的宽和高
  15. measureChildren(widthMeasureSpec, heightMeasureSpec);
  16. /**
  17. * 记录如果是wrap_content是设置的宽和高
  18. */
  19. int width = 0;
  20. int height = 0;
  21. int cCount = getChildCount();
  22. int cWidth = 0;
  23. int cHeight = 0;
  24. MarginLayoutParams cParams = null;
  25. // 用于计算左边两个childView的高度
  26. int lHeight = 0;
  27. // 用于计算右边两个childView的高度,最终高度取二者之间大值
  28. int rHeight = 0;
  29. // 用于计算上边两个childView的宽度
  30. int tWidth = 0;
  31. // 用于计算下面两个childiew的宽度,最终宽度取二者之间大值
  32. int bWidth = 0;
  33. /**
  34. * 根据childView计算的出的宽和高,以及设置的margin计算容器的宽和高,主要用于容器是warp_content时
  35. */
  36. for (int i = 0; i < cCount; i++)
  37. {
  38. View childView = getChildAt(i);
  39. cWidth = childView.getMeasuredWidth();
  40. cHeight = childView.getMeasuredHeight();
  41. cParams = (MarginLayoutParams) childView.getLayoutParams();
  42. // 上面两个childView
  43. if (i == 0 || i == 1)
  44. {
  45. tWidth += cWidth + cParams.leftMargin + cParams.rightMargin;
  46. }
  47. if (i == 2 || i == 3)
  48. {
  49. bWidth += cWidth + cParams.leftMargin + cParams.rightMargin;
  50. }
  51. if (i == 0 || i == 2)
  52. {
  53. lHeight += cHeight + cParams.topMargin + cParams.bottomMargin;
  54. }
  55. if (i == 1 || i == 3)
  56. {
  57. rHeight += cHeight + cParams.topMargin + cParams.bottomMargin;
  58. }
  59. }
  60. width = Math.max(tWidth, bWidth);
  61. height = Math.max(lHeight, rHeight);
  62. /**
  63. * 如果是wrap_content设置为我们计算的值
  64. * 否则:直接设置为父容器计算的值
  65. */
  66. setMeasuredDimension((widthMode == MeasureSpec.EXACTLY) ? sizeWidth
  67. : width, (heightMode == MeasureSpec.EXACTLY) ? sizeHeight
  68. : height);
  69. }

10-14行,获取该ViewGroup父容器为其设置的计算模式和尺寸,大多情况下,只要不是wrap_content,父容器都能正确的计算其尺寸。所以我们自己需要计算如果设置为wrap_content时的宽和高,如何计算呢?那就是通过其childView的宽和高来进行计算。

17行,通过ViewGroup的measureChildren方法为其所有的孩子设置宽和高,此行执行完成后,childView的宽和高都已经正确的计算过了

43-71行,根据childView的宽和高,以及margin,计算ViewGroup在wrap_content时的宽和高。

80-82行,如果宽高属性值为wrap_content,则设置为43-71行中计算的值,否则为其父容器传入的宽和高。

3、onLayout对其所有childView进行定位(设置childView的绘制区域)

[java] view plaincopy
  1. // abstract method in viewgroup
  2. @Override
  3. protected void onLayout(boolean changed, int l, int t, int r, int b)
  4. {
  5. int cCount = getChildCount();
  6. int cWidth = 0;
  7. int cHeight = 0;
  8. MarginLayoutParams cParams = null;
  9. /**
  10. * 遍历所有childView根据其宽和高,以及margin进行布局
  11. */
  12. for (int i = 0; i < cCount; i++)
  13. {
  14. View childView = getChildAt(i);
  15. cWidth = childView.getMeasuredWidth();
  16. cHeight = childView.getMeasuredHeight();
  17. cParams = (MarginLayoutParams) childView.getLayoutParams();
  18. int cl = 0, ct = 0, cr = 0, cb = 0;
  19. switch (i)
  20. {
  21. case 0:
  22. cl = cParams.leftMargin;
  23. ct = cParams.topMargin;
  24. break;
  25. case 1:
  26. cl = getWidth() - cWidth - cParams.leftMargin
  27. - cParams.rightMargin;
  28. ct = cParams.topMargin;
  29. break;
  30. case 2:
  31. cl = cParams.leftMargin;
  32. ct = getHeight() - cHeight - cParams.bottomMargin;
  33. break;
  34. case 3:
  35. cl = getWidth() - cWidth - cParams.leftMargin
  36. - cParams.rightMargin;
  37. ct = getHeight() - cHeight - cParams.bottomMargin;
  38. break;
  39. }
  40. cr = cl + cWidth;
  41. cb = cHeight + ct;
  42. childView.layout(cl, ct, cr, cb);
  43. }
  44. }

代码比较容易懂:遍历所有的childView,根据childView的宽和高以及margin,然后分别将0,1,2,3位置的childView依次设置到左上、右上、左下、右下的位置。

如果是第一个View(index=0) :则childView.layout(cl, ct, cr, cb); cl为childView的leftMargin , ct 为topMargin , cr 为cl+ cWidth , cb为 ct + cHeight

如果是第二个View(index=1) :则childView.layout(cl, ct, cr, cb);

cl为getWidth() - cWidth - cParams.leftMargin- cParams.rightMargin;

ct 为topMargin , cr 为cl+ cWidth , cb为 ct + cHeight

剩下两个类似~

这样就完成了,我们的ViewGroup代码的编写,下面我们进行测试,分别设置宽高为固定值,wrap_content,match_parent

5、测试结果

布局1:

[html] view plaincopy
  1. <com.example.zhy_custom_viewgroup.CustomImgContainer xmlns:android="http://schemas.android.com/apk/res/android"
  2. xmlns:tools="http://schemas.android.com/tools"
  3. android:layout_width="200dp"
  4. android:layout_height="200dp"
  5. android:background="#AA333333" >
  6. <TextView
  7. android:layout_width="50dp"
  8. android:layout_height="50dp"
  9. android:background="#FF4444"
  10. android:gravity="center"
  11. android:text="0"
  12. android:textColor="#FFFFFF"
  13. android:textSize="22sp"
  14. android:textStyle="bold" />
  15. <TextView
  16. android:layout_width="50dp"
  17. android:layout_height="50dp"
  18. android:background="#00ff00"
  19. android:gravity="center"
  20. android:text="1"
  21. android:textColor="#FFFFFF"
  22. android:textSize="22sp"
  23. android:textStyle="bold" />
  24. <TextView
  25. android:layout_width="50dp"
  26. android:layout_height="50dp"
  27. android:background="#ff0000"
  28. android:gravity="center"
  29. android:text="2"
  30. android:textColor="#FFFFFF"
  31. android:textSize="22sp"
  32. android:textStyle="bold" />
  33. <TextView
  34. android:layout_width="50dp"
  35. android:layout_height="50dp"
  36. android:background="#0000ff"
  37. android:gravity="center"
  38. android:text="3"
  39. android:textColor="#FFFFFF"
  40. android:textSize="22sp"
  41. android:textStyle="bold" />
  42. </com.example.zhy_custom_viewgroup.CustomImgContainer>

ViewGroup宽和高设置为固定值

效果图:

布局2:

[html] view plaincopy
  1. <com.example.zhy_custom_viewgroup.CustomImgContainer xmlns:android="http://schemas.android.com/apk/res/android"
  2. xmlns:tools="http://schemas.android.com/tools"
  3. android:layout_width="wrap_content"
  4. android:layout_height="wrap_content"
  5. android:background="#AA333333" >
  6. <TextView
  7. android:layout_width="150dp"
  8. android:layout_height="150dp"
  9. android:background="#E5ED05"
  10. android:gravity="center"
  11. android:text="0"
  12. android:textColor="#FFFFFF"
  13. android:textSize="22sp"
  14. android:textStyle="bold" />
  15. <TextView
  16. android:layout_width="50dp"
  17. android:layout_height="50dp"
  18. android:background="#00ff00"
  19. android:gravity="center"
  20. android:text="1"
  21. android:textColor="#FFFFFF"
  22. android:textSize="22sp"
  23. android:textStyle="bold" />
  24. <TextView
  25. android:layout_width="50dp"
  26. android:layout_height="50dp"
  27. android:background="#ff0000"
  28. android:gravity="center"
  29. android:text="2"
  30. android:textColor="#FFFFFF"
  31. android:textSize="22sp"
  32. android:textStyle="bold" />
  33. <TextView
  34. android:layout_width="50dp"
  35. android:layout_height="50dp"
  36. android:background="#0000ff"
  37. android:gravity="center"
  38. android:text="3"
  39. android:textColor="#FFFFFF"
  40. android:textSize="22sp"
  41. android:textStyle="bold" />
  42. </com.example.zhy_custom_viewgroup.CustomImgContainer>

ViewGroup的宽和高设置为wrap_content
效果图:

布局3:

[html] view plaincopy
  1. <com.example.zhy_custom_viewgroup.CustomImgContainer xmlns:android="http://schemas.android.com/apk/res/android"
  2. xmlns:tools="http://schemas.android.com/tools"
  3. android:layout_width="match_parent"
  4. android:layout_height="match_parent"
  5. android:background="#AA333333" >
  6. <TextView
  7. android:layout_width="150dp"
  8. android:layout_height="150dp"
  9. android:background="#E5ED05"
  10. android:gravity="center"
  11. android:text="0"
  12. android:textColor="#FFFFFF"
  13. android:textSize="22sp"
  14. android:textStyle="bold" />
  15. <TextView
  16. android:layout_width="50dp"
  17. android:layout_height="50dp"
  18. android:background="#00ff00"
  19. android:gravity="center"
  20. android:text="1"
  21. android:textColor="#FFFFFF"
  22. android:textSize="22sp"
  23. android:textStyle="bold" />
  24. <TextView
  25. android:layout_width="50dp"
  26. android:layout_height="50dp"
  27. android:background="#ff0000"
  28. android:gravity="center"
  29. android:text="2"
  30. android:textColor="#FFFFFF"
  31. android:textSize="22sp"
  32. android:textStyle="bold" />
  33. <TextView
  34. android:layout_width="150dp"
  35. android:layout_height="150dp"
  36. android:background="#0000ff"
  37. android:gravity="center"
  38. android:text="3"
  39. android:textColor="#FFFFFF"
  40. android:textSize="22sp"
  41. android:textStyle="bold" />
  42. </com.example.zhy_custom_viewgroup.CustomImgContainer>

ViewGroup的宽和高设置为match_parent

可以看到无论ViewGroup的宽和高的值如何定义,我们的需求都实现了预期的效果~~

好了,通过这篇教程,希望大家已经能够初步掌握自定义ViewGroup的步骤,大家可以尝试自定义ViewGroup去实现LinearLayout的效果~~

最后说明下,此为第一篇ViewGroup的教程,以后还会进一步的探讨如何更好的自定义ViewGroup~~~

如果你觉得这篇文章对你有用,那么赞一个或者留个言吧~

Android 手把手教您自定义ViewGroup相关推荐

  1. Android:手把手教你打造可缩放移动的ImageView(下)

    在上一篇Android:手把手教你打造可缩放移动的ImageView最后提出了一个注意点:当自定义的MatrixImageView如ViewPager.ListView等带有滑动效果的ViewGrou ...

  2. Android动画效果之自定义ViewGroup添加布局动画

    Android动画效果之自定义ViewGroup添加布局动画 前言: 前面几篇文章介绍了补间动画.逐帧动画.属性动画,大部分都是针对View来实现的动画,那么该如何为了一个ViewGroup添加动画呢 ...

  3. android 自定义图片容器,Android应用开发中自定义ViewGroup视图容器的教程

    一.概述在写代码之前,我必须得问几个问题: 1.ViewGroup的职责是啥?ViewGroup相当于一个放置View的容器,并且我们在写布局xml的时候,会告诉容器(凡是以layout为开头的属性, ...

  4. android computescroll_Android问题:自定义ViewGroup,重载computeScroll()方法有什么用?...

    展开全部 为了易于控制滑屏控制,Android框架提供了 computeScroll()方法去控制这个流程.e69da5e887aa62616964757a686964616f313333353461 ...

  5. Android开发实践:自定义ViewGroup的onLayout()分析

    Android开发中,对于自定义View,分为两种,一种是自定义控件(继承View类),另一种是自定义布局容器(继承ViewGroup).如果是自定义控件,则一般需要重载两个方法,一个是onMeasu ...

  6. 微博自定义来源怎么去掉android,手把手教大家如何修改微博来源

    今天教大家如何在微博来源的地方自定义,效果如下图: 看到iphone 18s了吗 看到了吗?别说18s了,就连8s都不知道要哪年才能出呢-- 这是如何做到的呢?其实很简单. 首先这么做不违法哦,违法的 ...

  7. Android:手把手教你自定义头像View,可根据名字自动生成背景色+文字的显示效果,含动画效果。

    首先看需要做成的效果,如下所示

  8. android高德地图后台运行,Android手把手教你集成高德地图

    在上一篇博客上,和大家分享了如何在Android中集成高德定位以及定位的基本使用.今天我们就来看看高德地图在Android中如何使用吧. 同样,我将本篇博客的内容分为如下部分: (1)添加高德SDK ...

  9. Android手把手教你使用阿里云接口实现人脸定位、人脸检测、人脸对比功能。

    前言 现如今,人工智能越来越火,以至于我们必须了解和掌握它,今天我们就来结合阿里云的接口来实现人脸定位,人脸检测等功能. 废话不多说,先上效果图: 随便在网上找了三张图片进行检测,检测结果只显示了每一 ...

最新文章

  1. mysql timestamp 更新_[mysql] timestamp自动更新和初始化
  2. [No000018C]Vim清除上次的搜索高亮结果-Vim使用技巧(1)
  3. oracle sql 匹配 一位,oracle -sql模式匹配
  4. 【HDU - 5477】A Sweet Journey(思维,水题)
  5. JavaScript将字符串中的每一个单词的第一个字母变为大写其余均为小写
  6. 人脸识别最新进展——几篇相关论文总结
  7. 小企鹅输入法+v4.0+linux,Ubuntu 11.10中安装fcitx 4.0.1版本小企鹅输入法
  8. python snownlp了解_分享python snownlp的实例教程
  9. SSH和SSM的内容
  10. 基于脉动阵列实现矩阵卷积(FPGA)
  11. 连续多帧图像光流对齐和光流运动检测
  12. DevOps-SRE岗位到底是什么?
  13. cf1009 C. Annoying Present
  14. android竖屏固定,ANDROID强制锁定竖屏_APP固定设置竖屏或横屏
  15. 【题解】CSP-J2021第二轮题解
  16. 在matlab中建模基准地形和山峰
  17. [转]Python中找出dataframe中的重复的行 DataFrame.duplicated()方法
  18. CodeForces 135C C. Zero-One
  19. 操作系统篇之Linux命令操作和redis安装以及基本使用
  20. HR 开发技术(abap 转载)

热门文章

  1. 【C 语言】数组 ( 多维数组本质 | 步长角度 理解 多维数组本质 )
  2. 【IntelliJ IDEA】导出可执行 JAR 包
  3. 【Java 网络编程】客户端 Socket 创建
  4. .dll与.lib的关系总结
  5. python学习 day19
  6. 关于MyEclipse连接SQLServer和Mariadbsql
  7. C++primer 10.6节练习
  8. ElasticSearch聚合aggs入门
  9. [转帖]c++ 面试整理
  10. 微信公众平台入门开发教程.Net(C#)框架