Android 手把手教您自定义ViewGroup(一)


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

1、决定该ViewGroup的LayoutParams

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

@Override

public ViewGroup.LayoutParams generateLayoutParams(AttributeSet attrs)

{

return new MarginLayoutParams(getContext(), attrs);

}

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

2、onMeasure

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

/**

  • 计算所有ChildView的宽度和高度 然后根据ChildView的计算结果,设置自己的宽和高

*/

@Override

protected void onMeasure(int widthMeasureSpec, int heightMeasureSpec)

{

/**

  • 获得此ViewGroup上级容器为其推荐的宽和高,以及计算模式

*/

int widthMode = MeasureSpec.getMode(widthMeasureSpec);

int heightMode = MeasureSpec.getMode(heightMeasureSpec);

int sizeWidth = MeasureSpec.getSize(widthMeasureSpec);

int sizeHeight = MeasureSpec.getSize(heightMeasureSpec);

// 计算出所有的childView的宽和高

measureChildren(widthMeasureSpec, heightMeasureSpec);

/**

  • 记录如果是wrap_content是设置的宽和高

*/

int width = 0;

int height = 0;

int cCount = getChildCount();

int cWidth = 0;

int cHeight = 0;

MarginLayoutParams cParams = null;

// 用于计算左边两个childView的高度

int lHeight = 0;

// 用于计算右边两个childView的高度,最终高度取二者之间大值

int rHeight = 0;

// 用于计算上边两个childView的宽度

int tWidth = 0;

// 用于计算下面两个childiew的宽度,最终宽度取二者之间大值

int bWidth = 0;

/**

  • 根据childView计算的出的宽和高,以及设置的margin计算容器的宽和高,主要用于容器是warp_content时

*/

for (int i = 0; i < cCount; i++)

{

View childView = getChildAt(i);

cWidth = childView.getMeasuredWidth();

cHeight = childView.getMeasuredHeight();

cParams = (MarginLayoutParams) childView.getLayoutParams();

// 上面两个childView

if (i == 0 || i == 1)

{

tWidth += cWidth + cParams.leftMargin + cParams.rightMargin;

}

if (i == 2 || i == 3)

{

bWidth += cWidth + cParams.leftMargin + cParams.rightMargin;

}

if (i == 0 || i == 2)

{

lHeight += cHeight + cParams.topMargin + cParams.bottomMargin;

}

if (i == 1 || i == 3)

{

rHeight += cHeight + cParams.topMargin + cParams.bottomMargin;

}

}

width = Math.max(tWidth, bWidth);

height = Math.max(lHeight, rHeight);

/**

  • 如果是wrap_content设置为我们计算的值

  • 否则:直接设置为父容器计算的值

*/

setMeasuredDimension((widthMode == MeasureSpec.EXACTLY) ? sizeWidth

width, (heightMode == MeasureSpec.EXACTLY) ? sizeHeight

height);

}

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的绘制区域)

// abstract method in viewgroup

@Override

protected void onLayout(boolean changed, int l, int t, int r, int b)

{

int cCount = getChildCount();

int cWidth = 0;

int cHeight = 0;

MarginLayoutParams cParams = null;

/**

  • 遍历所有childView根据其宽和高,以及margin进行布局

*/

for (int i = 0; i < cCount; i++)

{

View childView = getChildAt(i);

cWidth = childView.getMeasuredWidth();

cHeight = childView.getMeasuredHeight();

cParams = (MarginLayoutParams) childView.getLayoutParams();

int cl = 0, ct = 0, cr = 0, cb = 0;

switch (i)

{

case 0:

cl = cParams.leftMargin;

ct = cParams.topMargin;

break;

case 1:

cl = getWidth() - cWidth - cParams.leftMargin

  • cParams.rightMargin;

ct = cParams.topMargin;

break;

case 2:

cl = cParams.leftMargin;

ct = getHeight() - cHeight - cParams.bottomMargin;

break;

case 3:

cl = getWidth() - cWidth - cParams.leftMargin

  • cParams.rightMargin;

ct = getHeight() - cHeight - cParams.bottomMargin;

break;

}

cr = cl + cWidth;

cb = cHeight + ct;

childView.layout(cl, ct, cr, cb);

}

}

代码比较容易懂:遍历所有的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:

<com.example.zhy_custom_viewgroup.CustomImgContainer xmlns:android=“http://schemas.android.com/apk/res/android”

xmlns:tools=“http://schemas.android.com/tools”

android:layout_width=“200dp”

android:layout_height=“200dp”

android:background=“#AA333333” >

<TextView

android:layout_width=“50dp”

android:layout_height=“50dp”

android:background=“#FF4444”

android:gravity=“center”

android:text=“0”

android:textColor=“#FFFFFF”

android:textSize=“22sp”

android:textStyle=“bold” />

<TextView

android:layout_width=“50dp”

android:layout_height=“50dp”

android:background=“#00ff00”

android:gravity=“center”

android:text=“1”

android:textColor=“#FFFFFF”

android:textSize=“22sp”

android:textStyle=“bold” />

<TextView

android:layout_width=“50dp”

android:layout_height=“50dp”

android:background=“#ff0000”

android:gravity=“center”

android:text=“2”

android:textColor=“#FFFFFF”

android:textSize=“22sp”

android:textStyle=“bold” />

<TextView

android:layout_width=“50dp”

android:layout_height=“50dp”

android:background=“#0000ff”

android:gravity=“center”

android:text=“3”

android:textColor=“#FFFFFF”

android:textSize=“22sp”

android:textStyle=“bold” />

</com.example.zhy_custom_viewgroup.CustomImgContainer>

ViewGroup宽和高设置为固定值

效果图:

布局2:

<com.example.zhy_custom_viewgroup.CustomImgContainer xmlns:android=“http://schemas.android.com/apk/res/android”

xmlns:tools=“http://schemas.android.com/tools”

android:layout_width=“wrap_content”

android:layout_height=“wrap_content”

android:background=“#AA333333” >

<TextView

android:layout_width=“150dp”

android:layout_height=“150dp”

android:background=“#E5ED05”

android:gravity=“center”

android:text=“0”

android:textColor=“#FFFFFF”

android:textSize=“22sp”

android:textStyle=“bold” />

<TextView

android:layout_width=“50dp”

android:layout_height=“50dp”

android:background=“#00ff00”

android:gravity=“center”

android:text=“1”

android:textColor=“#FFFFFF”

android:textSize=“22sp”

android:textStyle=“bold” />

<TextView

android:layout_width=“50dp”

android:layout_height=“50dp”

android:background=“#ff0000”

android:gravity=“center”

android:text=“2”

android:textColor=“#FFFFFF”

android:textSize=“22sp”

android:textStyle=“bold” />

<TextView

android:layout_width=“50dp”

android:layout_height=“50dp”

android:background=“#0000ff”

android:gravity=“center”

android:text=“3”

android:textColor=“#FFFFFF”

android:textSize=“22sp”

android:textStyle=“bold” />

</com.example.zhy_custom_viewgroup.CustomImgContainer>

ViewGroup的宽和高设置为wrap_content

效果图:

布局3:

<com.example.zhy_custom_viewgroup.CustomImgContainer xmlns:android=“http://schemas.android.com/apk/res/android”

xmlns:tools=“http://schemas.android.com/tools”

android:layout_width=“match_parent”

android:layout_height=“match_parent”

android:background=“#AA333333” >

<TextView

android:layout_width=“150dp”

android:layout_height=“150dp”

android:background=“#E5ED05”

android:gravity=“center”

android:text=“0”

android:textColor=“#FFFFFF”

android:textSize=“22sp”

android:textStyle=“bold” />

<TextView

android:layout_width=“50dp”

android:layout_height=“50dp”

android:background=“#00ff00”

android:gravity=“center”

android:text=“1”

android:textColor=“#FFFFFF”

android:textSize=“22sp”

android:textStyle=“bold” />

<TextView

android:layout_width=“50dp”

android:layout_height=“50dp”

android:background=“#ff0000”

android:gravity=“center”

android:text=“2”

android:textColor=“#FFFFFF”

android:textSize=“22sp”

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值