Android自定义控件之继承ViewGroup创建新容器
欢迎大家来学习本节内容,前几节我们已经学习了其他几种自定义控件,分别是andriod 自定义控件之音频条及 andriod 自定义控件之创建可以复用的组合控件还没有学习的同学请先去学习下,因为本节将使用到上几节所讲述的内容。
在学习新内容之前,我们先来弄清楚两个问题:
1 . 什么是viewgroup?
viewgroup是一种容器。它包含零个或以上的view及子view。
2 . viewgroup有什么作用?
viewgroup内部可以用来存放多个view控件,并且根据自身的测量模式,来测量view子控件,并且决定view子控件的位置。这在下面会逐步讲解它是怎么测量及决定子控件大小和位置的。
ok,弄清楚了这两个问题,那么下面我们来学习下自定义viewgroup吧。
首先和之前几节一样,先来继承viewgroup,并重写它们的构造方法。
public class customviewgroup extends viewgroup{ public customviewgroup(context context) { this(context,null); } public customviewgroup(context context, attributeset attrs) { this(context, attrs,0); } public customviewgroup(context context, attributeset attrs, int defstyleattr) { super(context, attrs, defstyleattr); } }
在上面两个问题,我们知道,viewgroup它是一个容器,它是用来存放和管理子控件的,并且子控件的测量方式是根据它的测量模式来进行的,所以我们必须重写它的onmeasure(),在该方法中进行对子view的大小进行测量,代码如下:
@override protected void onmeasure(int widthmeasurespec, int heightmeasurespec) { super.onmeasure(widthmeasurespec, heightmeasurespec); int childcount = getchildcount(); for(int i = 0 ; i < childcount ; i ++){ view children = getchildat(i); measurechild(children,widthmeasurespec,heightmeasurespec); } }
其上代码,我们重写了onmeasure(),在方法里面,我们首先先获取viewgroup中的子view的个数,然后遍历它所有的子view,得到每一个子view,调用measurechild()放来,来对子view进行测量。刚才提到子view的测量是根据viewgroup所提供的测量模式来进行来,所以在measurechild()方法中,把viewgroup的widthmeasurespec 和 heightmeasurespec和子view一起传进去了,我们可以跟进去看看是不是和我们所说的一样。
measurechild()方法源码:
protected void measurechild(view child, int parentwidthmeasurespec, int parentheightmeasurespec) { final layoutparams lp = child.getlayoutparams(); final int childwidthmeasurespec = getchildmeasurespec(parentwidthmeasurespec, mpaddingleft + mpaddingright, lp.width); final int childheightmeasurespec = getchildmeasurespec(parentheightmeasurespec, mpaddingtop + mpaddingbottom, lp.height); child.measure(childwidthmeasurespec, childheightmeasurespec); }
measurechild()源码方法里面很好理解,它首先得到子view的layoutparams,然后根据viewgroup传递进来的宽高属性值和自身的layoutparams 的宽高属性值及自身padding属性值分别调用getchildmeasurespec()方法获取到子view的测量。由该方法我们也知道viewgroup中在测量子view的大小时,测量结果分别是由父节点的测量模式和子view本身的layoutparams及padding所决定的。
下面我们再来看看getchildmeasurespec()方法的源码,看看它是怎么获取测量结果的。
getchildmeasurespec()方法源码:
public static int getchildmeasurespec(int spec, int padding, int childdimension) { int specmode = measurespec.getmode(spec); int specsize = measurespec.getsize(spec); int size = math.max(0, specsize - padding); int resultsize = 0; int resultmode = 0; switch (specmode) { // parent has imposed an exact size on us case measurespec.exactly: if (childdimension >= 0) { resultsize = childdimension; resultmode = measurespec.exactly; } else if (childdimension == layoutparams.match_parent) { // child wants to be our size. so be it. resultsize = size; resultmode = measurespec.exactly; } else if (childdimension == layoutparams.wrap_content) { // child wants to determine its own size. it can't be // bigger than us. resultsize = size; resultmode = measurespec.at_most; } break; // parent has imposed a maximum size on us case measurespec.at_most: if (childdimension >= 0) { // child wants a specific size... so be it resultsize = childdimension; resultmode = measurespec.exactly; } else if (childdimension == layoutparams.match_parent) { // child wants to be our size, but our size is not fixed. // constrain child to not be bigger than us. resultsize = size; resultmode = measurespec.at_most; } else if (childdimension == layoutparams.wrap_content) { // child wants to determine its own size. it can't be // bigger than us. resultsize = size; resultmode = measurespec.at_most; } break; // parent asked to see how big we want to be case measurespec.unspecified: if (childdimension >= 0) { // child wants a specific size... let him have it resultsize = childdimension; resultmode = measurespec.exactly; } else if (childdimension == layoutparams.match_parent) { // child wants to be our size... find out how big it should // be resultsize = view.susezerounspecifiedmeasurespec ? 0 : size; resultmode = measurespec.unspecified; } else if (childdimension == layoutparams.wrap_content) { // child wants to determine its own size.... find out how // big it should be resultsize = view.susezerounspecifiedmeasurespec ? 0 : size; resultmode = measurespec.unspecified; } break; } return measurespec.makemeasurespec(resultsize, resultmode); }
该方法也很好理解:首先是获取父节点(这里是viewgroup)的测量模式和测量的大小,并根据测量的大小值与子view自身的padding属性值相比较取最大值得到一个size的值。
然后根据父节点的测量模式分别再来判定子view的layoutparams属性值,根据layoutparams的属性值从而获取到子view测量的大小和模式,知道了ziview的测量模式和大小就能决定子view的大小了。
ok,子view的测量我们已经完全明白了,那么接下来,我们再来分析一下viewgroup是怎样给子view定位的,首先我们也是必须先重写onlayout()方法,代码如下:
@override protected void onlayout(boolean changed, int l, int t, int r, int b) { int childcount = getchildcount(); int preheight = 0; for(int i = 0 ; i < childcount ; i ++){ view children = getchildat(i); int cheight = children.getmeasuredheight(); if(children.getvisibility() != view.gone){ children.layout(l, preheight, r,preheight += cheight); } } }
很好理解,给子view定位,首先必须知道有多少个子view才行,所以我们先得到子view的数量,然后遍历获取每个子view。其实在定位子view的layout()方法中,系统并没有给出具体的定位方法,而是给了我们最大的限度来自己定义,下面来看下layout源码:
public void layout(int l, int t, int r, int b) { if ((mprivateflags3 & pflag3_measure_needed_before_layout) != 0) { onmeasure(moldwidthmeasurespec, moldheightmeasurespec); mprivateflags3 &= ~pflag3_measure_needed_before_layout; } int oldl = mleft; int oldt = mtop; int oldb = mbottom; int oldr = mright; boolean changed = islayoutmodeoptical(mparent) ? setopticalframe(l, t, r, b) : setframe(l, t, r, b); if (changed || (mprivateflags & pflag_layout_required) == pflag_layout_required) { onlayout(changed, l, t, r, b); mprivateflags &= ~pflag_layout_required; listenerinfo li = mlistenerinfo; if (li != null && li.monlayoutchangelisteners != null) { arraylist<onlayoutchangelistener> listenerscopy = (arraylist<onlayoutchangelistener>)li.monlayoutchangelisteners.clone(); int numlisteners = listenerscopy.size(); for (int i = 0; i < numlisteners; ++i) { listenerscopy.get(i).onlayoutchange(this, l, t, r, b, oldl, oldt, oldr, oldb); } } } mprivateflags &= ~pflag_force_layout; mprivateflags3 |= pflag3_is_laid_out; }
在上面一段代码中,最关键个就是setframe(l, t, r, b);这个方法,它主要是来定位子view的四个顶点左右坐标的,然后关键的定位方法是在onlayout(changed, l, t, r, b);这个方法中,跟进去看看
protected void onlayout(boolean changed, int left, int top, int right, int bottom) { }
一看吓一跳,空的,哈哈,这也就是我上面说的,系统给了我们最大的*,让我们自己根据需求去定义了。
而我这里是根据子view的高度让它们竖直顺序的排列下来。
view children = getchildat(i); int cheight = children.getmeasuredheight(); if(children.getvisibility() != view.gone){ children.layout(l, preheight, r,preheight += cheight);
定义一个记录上一个view的高度的变量,每次遍历以后都让它加上当前的view高度,由此就可以竖直依次地排列了每个子view,从而实现了子view的定义。
好了,讲了这么多,现在来看看效果吧,我们就拿之前做的自定义view作为它的子view吧:
custom_viewgroup.xml文件:
<?xml version="1.0" encoding="utf-8"?> <com.sanhuimusic.mycustomview.view.customviewgroup android:background="#999999" xmlns:android="http://schemas.android.com/apk/res/android" xmlns:custom="http://schemas.android.com/apk/res-auto" android:id="@+id/customviewgroup" android:layout_width="match_parent" android:layout_height="match_parent"> <com.sanhuimusic.mycustomview.view.compositeviews android:background="#999999" android:id="@+id/topbar" android:layout_width="wrap_content" android:layout_height="wrap_content" custom:titletext="@string/titletext" custom:titlecolor="#000000" custom:titletextsize="@dimen/titletextsize" custom:titlebackground="#999999" custom:lefttext="@string/lefttext" custom:lefttextcolor="#ffffff" custom:leftbackground="#666666" custom:lefttextsize="@dimen/lefttextsize" custom:righttext="@string/righttext" custom:righttextcolor="#ffffff" custom:rightbackground="#666666" custom:righttextsize="@dimen/righttextsize" /> <com.sanhuimusic.mycustomview.view.audiobar android:layout_width="match_parent" android:layout_height="wrap_content" /> </com.sanhuimusic.mycustomview.view.customviewgroup>
mainactivity:
public class mainactivity extends appcompatactivity { private compositeviews topbar; private context mcontext; private customviewgroup mviewgroupcontainer; @override protected void oncreate(bundle savedinstancestate) { super.oncreate(savedinstancestate); setcontentview(r.layout.custom_viewgroup); mcontext = this; init(); } private void init() { mviewgroupcontainer = (customviewgroup) findviewbyid(r.id.customviewgroup); topbar = (compositeviews)findviewbyid(r.id.topbar); topbar.setontopbarclicklistener(new compositeviews.topbarclicklistener(){ @override public void leftclicklistener() { toastutil.maketext(mainactivity.this,"您点击了返回键",toast.length_short).show(); } @override public void rightclicklistener() { toastutil.maketext(mainactivity.this,"您点击了搜索键",toast.length_short).show(); } }); } }
效果图:
哈哈,是不是每个子view都按照我们所说的竖直依次排列下来了呢。正开心呢,然后突然冒出来一个想法,学习过andriod 自定义控件之音频条这篇文章的你,会记得当时在定义全新的view时会遇到当我们的布局文件使用的是wrap_content时,view是不直接支持的,需要我们特殊的处理才能正确支持,而我们现在的 viewgroup是不是也是这样的呢,赶快尝试一下。一尝试,坏了,果然不支持wrap_content。
所以,在自定义viewgroup时,我们必须要注意以下几个问题:
1. 必须让viewgroup支持wrap_content的情景下的布局。
2. 也需要支持本身的padding属性。
好,下面我们来一点一点的完善它。
1 . 我们让它先支持wrap_content。
这需要我们在onmeasure()方法中多出一些必要的改动。让它支持自身wrap_content那就需要我们对它惊醒测量,根据测量方式获取到测量大小,然后再调用setmeasureddimension()决定显示大小。
@override protected void onmeasure(int widthmeasurespec, int heightmeasurespec) { super.onmeasure(widthmeasurespec, heightmeasurespec); int childcount = getchildcount(); for(int i = 0 ; i < childcount ; i ++){ view children = getchildat(i); measurechild(children,widthmeasurespec,heightmeasurespec); } /** * 让它支持自身wrap_content */ int widthspecmode = measurespec.getmode(widthmeasurespec); int widthspecsize = measurespec.getsize(widthmeasurespec); int heightspecmode = measurespec.getmode(heightmeasurespec); int heightspecsize = measurespec.getsize(heightmeasurespec); int mwidth = 0; int mheight = 0; int mmaxwidth = 0; if(widthspecmode == measurespec.at_most && heightspecmode == measurespec.at_most){ for(int i = 0 ; i < childcount ; i ++){ view children = getchildat(i); mwidth += children.getmeasuredwidth(); mheight += children.getmeasuredheight(); } setmeasureddimension(mwidth, mheight); } else if(widthspecmode == measurespec.at_most){ for(int i = 0 ; i < childcount ; i ++){ view children = getchildat(i); mmaxwidth = math.max(mmaxwidth,children.getmeasuredwidth()); } setmeasureddimension(mmaxwidth,heightspecsize); } else if(heightspecmode == measurespec.at_most){ for(int i = 0 ; i < childcount ; i ++){ view children = getchildat(i); mheight += children.getmeasuredheight(); } setmeasureddimension(widthspecsize,mheight); } }
我们再原来的基础上添加了可以支持wrap_content的代码,然后根据具体的情况进行获取大小。分为三种情况:
- 当宽高属性都为wrap_content时,分别获取到子view的宽高并相加取得总宽高,在调用setmeasureddimension(mwidth, mheight)直接设置即可;
- 当宽属性都为wrap_content时,分别获取到子view的宽并获取其中最大值,在调用setmeasureddimension(mmaxwidth,heightspecsize)直接设置即可;
- 当高属性都为wrap_content时,分别获取到子view的高并相加取得总高,在调用setmeasureddimension(widthspecsize,mheight)直接设置即可。
好,来看看是否可以达到我们的要求。
显然已达到目标。
2 . 需要支持本身的padding属性。
首先我们先获取到padding值,如下:
leftpadding = getpaddingleft(); toppadding = getpaddingtop(); rightpadding = getpaddingright(); bottompadding = getpaddingbottom();
然后分别在设置大小的地方给加上这些属性值,如下:
if(widthspecmode == measurespec.at_most && heightspecmode == measurespec.at_most){ for(int i = 0 ; i < childcount ; i ++){ view children = getchildat(i); mwidth += children.getmeasuredwidth(); mheight += children.getmeasuredheight(); } setmeasureddimension(mwidth + leftpadding + rightpadding, mheight + toppadding + bottompadding); } else if(widthspecmode == measurespec.at_most){ for(int i = 0 ; i < childcount ; i ++){ view children = getchildat(i); mmaxwidth = math.max(mmaxwidth,children.getmeasuredwidth()); } setmeasureddimension(mmaxwidth + leftpadding + rightpadding, heightspecsize + toppadding + bottompadding); } else if(heightspecmode == measurespec.at_most){ for(int i = 0 ; i < childcount ; i ++){ view children = getchildat(i); mheight += children.getmeasuredheight(); } setmeasureddimension(widthspecsize + leftpadding + rightpadding, mheight + toppadding + bottompadding); }
最后在onlayout()方法中给添加属性值:
@override protected void onlayout(boolean changed, int l, int t, int r, int b) { int childcount = getchildcount(); int preheight = toppadding; for(int i = 0 ; i < childcount ; i ++){ view children = getchildat(i); int cheight = children.getmeasuredheight(); if(children.getvisibility() != view.gone){ children.layout(l + leftpadding, preheight, r + rightpadding, preheight += cheight); } } }
代码很简单,不再让preheight = 0 了,而是直接设置为toppadding,最后在layout中也把属性值添加进来,看看结果。
其实除了以上两个问题需要注意的,还有其他也是需要关注的,比如说是支持子view的margin属性等,大致和解决padding属性一样的思路,大家可以尝试实现下。
好了,整个自定义viewgroup的内容都讲完了,当然我们只是讲述了ui的显示,并没有谈及到功能的添加和实现。从上面可以看出,自定义viewgroup要比自定义view复杂很多,但是只要一步一步的来完善还是可以实现不同的ui展示的。
从这几节自定义控件学习中,大家一定学到了很多知识,然后对自定义控件也不是那么怕了,同时也可以实现自己想要的各种ui啦,接下来我会总结下自定义控件中所需要使用的其他技术和知识下,让大家更好的加深印象。
好,今天就学习到这里吧,happy!
以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持。
推荐阅读
-
Android自定义控件之继承ViewGroup创建新容器
-
Android自定义控件之继承ViewGroup创建新容器
-
Android自定义控件之创建可复用的组合控件
-
Android自定义控件之创建可复用的组合控件
-
Android自定义控件之继承ViewGroup创建新容器
-
Android自定义控件----继承ViewGroup自定义ViewPager2,使用Scroller实现平滑移动
-
Android 之 自定义控件 之 ViewGroup
-
Android小白进阶(二)--自定义控件之自定义ViewGroup
-
Android 自定义控件之ViewGroup实例(实现一个简易的Viewpager)