Android 重写ViewGroup 分析onMeasure()和onLayout()方法
android 重写viewgroup 分析onmeasure()和onlayout()方法
在继承viewgroup类时,需要重写两个方法,分别是onmeasure和onlayout。
1,在方法onmeasure中调用setmeasureddimension方法
void android.view.view.setmeasureddimension(int measuredwidth, int measuredheight)
在onmeasure(int, int)中,必须调用setmeasureddimension(int width, int height)来存储测量得到的宽度和高度值,如果没有这么去做会触发异常illegalstateexception。
2,在方法onmeasure中调用孩子的measure方法
void android.view.view.measure(int widthmeasurespec, int heightmeasurespec)
这个方法用来测量出view的大小。父view使用width参数和height参数来提供constraint信息。实际上,view的测量工作在onmeasure(int, int)方法中完成。因此,只有onmeasure(int, int)方法可以且必须被重写。参数widthmeasurespec提供view的水平空间的规格说明,参数heightmeasurespec提供view的垂直空间的规格说明。
3,解析onmeasure(int, int)方法
void android.view.view.onmeasure(int widthmeasurespec, int heightmeasurespec)
测量view及其内容来确定view的宽度和高度。这个方法在measure(int, int)中被调用,必须被重写来精确和有效的测量view的内容。
在重写这个方法时,必须调用setmeasureddimension(int, int)来存储测量得到的宽度和高度值。执行失败会触发一个illegalstateexception异常。调用父view的onmeasure(int, int)是合法有效的用法。
view的基本测量数据默认取其背景尺寸,除非允许更大的尺寸。子view必须重写onmeasure(int, int)来提供其内容更加准确的测量数值。如果被重写,子类确保测量的height和width至少是view的最小高度和宽度(通过getsuggestedminimumheight()和getsuggestedminimumwidth()获取)。
4,解析onlayout(boolean, int, int, int, int)方法
void android.view.viewgroup.onlayout(boolean changed, int l, int t, int r, int b)
调用场景:在view给其孩子设置尺寸和位置时被调用。子view,包括孩子在内,必须重写onlayout(boolean, int, int, int, int)方法,并且调用各自的layout(int, int, int, int)方法。
参数说明:参数changed表示view有新的尺寸或位置;参数l表示相对于父view的left位置;参数t表示相对于父view的top位置;参数r表示相对于父view的right位置;参数b表示相对于父view的bottom位置。.
5,解析view.measurespec类
android.view.view.measurespec
measurespec对象,封装了layout规格说明,并且从父view传递给子view。每个measurespec对象代表了width或height的规格。
measurespec对象包含一个size和一个mode,其中mode可以取以下三个数值之一:
- unspecified,1073741824 [0x40000000],未加规定的,表示没有给子view添加任何规定。
- exactly,0 [0x0],精确的,表示父view为子view确定精确的尺寸。
- at_most,-2147483648 [0x80000000],子view可以在指定的尺寸内尽量大。
在这里给大家举一个例子demo:
第一步:自定义一个view实现viewgroup接口,即自定义viewgroup:
package net.loonggg.viewgroup; import android.content.context; import android.util.attributeset; import android.view.view; import android.view.viewgroup; public class myviewgroup extends viewgroup { public myviewgroup(context context) { super(context); } public myviewgroup(context context, attributeset attrs) { super(context, attrs); } public myviewgroup(context context, attributeset attrs, int defstyle) { super(context, attrs, defstyle); } /** * 计算控件的大小 */ @override protected void onmeasure(int widthmeasurespec, int heightmeasurespec) { super.onmeasure(widthmeasurespec, heightmeasurespec); int measurewidth = measurewidth(widthmeasurespec); int measureheight = measureheight(heightmeasurespec); // 计算自定义的viewgroup中所有子控件的大小 measurechildren(widthmeasurespec, heightmeasurespec); // 设置自定义的控件myviewgroup的大小 setmeasureddimension(measurewidth, measureheight); } private int measurewidth(int pwidthmeasurespec) { int result = 0; int widthmode = measurespec.getmode(pwidthmeasurespec);// 得到模式 int widthsize = measurespec.getsize(pwidthmeasurespec);// 得到尺寸 switch (widthmode) { /** * mode共有三种情况,取值分别为measurespec.unspecified, measurespec.exactly, * measurespec.at_most。 * * * measurespec.exactly是精确尺寸, * 当我们将控件的layout_width或layout_height指定为具体数值时如andorid * :layout_width="50dip",或者为fill_parent是,都是控件大小已经确定的情况,都是精确尺寸。 * * * measurespec.at_most是最大尺寸, * 当控件的layout_width或layout_height指定为wrap_content时 * ,控件大小一般随着控件的子空间或内容进行变化,此时控件尺寸只要不超过父控件允许的最大尺寸即可 * 。因此,此时的mode是at_most,size给出了父控件允许的最大尺寸。 * * * measurespec.unspecified是未指定尺寸,这种情况不多,一般都是父控件是adapterview, * 通过measure方法传入的模式。 */ case measurespec.at_most: case measurespec.exactly: result = widthsize; break; } return result; } private int measureheight(int pheightmeasurespec) { int result = 0; int heightmode = measurespec.getmode(pheightmeasurespec); int heightsize = measurespec.getsize(pheightmeasurespec); switch (heightmode) { case measurespec.at_most: case measurespec.exactly: result = heightsize; break; } return result; } /** * 覆写onlayout,其目的是为了指定视图的显示位置,方法执行的前后顺序是在onmeasure之后,因为视图肯定是只有知道大小的情况下, * 才能确定怎么摆放 */ @override protected void onlayout(boolean changed, int l, int t, int r, int b) { // 记录总高度 int mtotalheight = 0; // 遍历所有子视图 int childcount = getchildcount(); for (int i = 0; i < childcount; i++) { view childview = getchildat(i); // 获取在onmeasure中计算的视图尺寸 int measureheight = childview.getmeasuredheight(); int measuredwidth = childview.getmeasuredwidth(); childview.layout(l, mtotalheight, measuredwidth, mtotalheight + measureheight); mtotalheight += measureheight; } } }
第二步,布局文件:
<relativelayout 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="#00f0f0" tools:context=".mainactivity" > <net.loonggg.viewgroup.myviewgroup android:id="@+id/myviewgroup" android:layout_width="480dp" android:layout_height="300dp" android:background="#0f0f0f" > <textview android:layout_width="200dp" android:layout_height="100dp" android:background="#000000" android:gravity="center" android:text="第一个textview" /> <textview android:layout_width="100dp" android:layout_height="200dp" android:background="#ffffff" android:gravity="center" android:text="第二个textview" /> </net.loonggg.viewgroup.myviewgroup> </relativelayout>
第三步,mainactivity.java:
package net.loonggg.viewgroup; import android.os.bundle; import android.app.activity; public class mainactivity extends activity { @override protected void oncreate(bundle savedinstancestate) { super.oncreate(savedinstancestate); setcontentview(r.layout.activity_main); } }
感谢阅读,希望能帮助到大家,谢谢大家对本站的支持!