200字范文,内容丰富有趣,生活中的好帮手!
200字范文 > 自定义控件其实很简单七

自定义控件其实很简单七

时间:2019-12-15 16:27:46

相关推荐

自定义控件其实很简单七

尊重原创转载请注明:From AigeStudio(/aigestudio)Power by Aige 侵权必究!

炮兵镇楼

要在数量上统计中国菜的品种,在地域上毫无争议地划分菜系,在今天,是一件几乎不可能完成的事……Cut…………抱歉……忘吃药了,再来一遍。如果非要对自定义控件的流程进行一个简单的划分,我会尝试将其分为三大部分:控件的绘制、控件的测量和控件的交互行为。前面我们用了六节的篇幅和一个翻页的例子来对控件的绘制有了一个全新的认识但是我们所做出的所有例子都是不完美的,为什么这么说呢,还是先来看个sample:

[java]view plain copy print ?/** * *@authorAigeStudio{@link/aigestudio} *@since/1/12 * */ publicclassImgViewextendsView{ privateBitmapmBitmap;//位图对象 publicImgView(Contextcontext,AttributeSetattrs){ super(context,attrs); } @Override protectedvoidonDraw(Canvascanvas){ //绘制位图 canvas.drawBitmap(mBitmap,0,0,null); } /** *设置位图 * *@parambitmap *位图对象 */ publicvoidsetBitmap(Bitmapbitmap){ this.mBitmap=bitmap; } } 这个例子呢非常简单,我们用它来模拟类似ImageView的效果显示一张图片,在MainActivity中我们获取该控件并为其设置Bitmap:

[java]view plain copy print ?/** *主界面 * *@authorAige{@link/aigestudio} *@since/11/17 */ publicclassMainActivityextendsActivity{ privateImgViewmImgView; @Override publicvoidonCreate(BundlesavedInstanceState){ super.onCreate(savedInstanceState); setContentView(R.layout.activity_main); mImgView=(ImgView)findViewById(R.id.main_pv); Bitmapbitmap=BitmapFactory.decodeResource(getResources(),R.drawable.lovestory); mImgView.setBitmap(bitmap); } } 此时运行效果如下:

很简单对吧,可是上面的代码其实是有个问题的,至于什么问题?我们待会再说,就看你通过前面我们的学习能不能发现了。这一节我们重点是控件的测量,大家不知道注意没有,这个系列文章的命名我用了“控件”而非“View”其实目的就是说明我们的控件不仅包括View也应该包含ViewGroup,当然你也可以以官方的方式将其分为控件和布局,不过我更喜欢View和ViewGroup,好了废话不说,我们先来看看View的测量方式,上面的代码中MainActivity对应的布局文件如下:

[html]view plain copy print ?<LinearLayoutxmlns:android="/apk/res/android" android:layout_width="match_parent" android:layout_height="match_parent" android:background="#FFFFFFFF" android:orientation="vertical"> <com.aigestudio.customviewdemo.views.ImgView android:id="@+id/main_pv" android:layout_width="match_parent" android:layout_height="match_parent"/> </LinearLayout> 既然我们的自定义View也算一个控件那么我们也可以像平时做布局那样往我们的LinearLayout中添加各种各样的其他控件对吧:

[html]view plain copy print ?<LinearLayoutxmlns:android="/apk/res/android" android:layout_width="match_parent" android:layout_height="match_parent" android:background="#FFFFFFFF" android:orientation="vertical"> <com.aigestudio.customviewdemo.views.ImgView android:id="@+id/main_pv" android:layout_width="match_parent" android:layout_height="match_parent"/> <Button android:layout_width="wrap_content" android:layout_height="wrap_content" android:text="AigeStudio"/> <TextView android:layout_width="wrap_content" android:layout_height="wrap_content" android:text="AigeStudio"/> </LinearLayout> 但是运行后你却发现我们的Button和TextView却没有显示在屏幕上,这时你可能会说那当然咯,因为我们的ImgViewlayout_width和layout_height均为match_parent,可是即便你将其改成wrap_content:

[html]view plain copy print ?<LinearLayoutxmlns:android="/apk/res/android" android:layout_width="match_parent" android:layout_height="match_parent" android:background="#FFFFFFFF" android:orientation="vertical"> <com.aigestudio.customviewdemo.views.ImgView android:id="@+id/main_pv" android:layout_width="wrap_content" android:layout_height="wrap_content"/> <!--……省略一些代码……--> </LinearLayout> 结果也一样,这时你肯定很困惑,不解的主要原因是没有搞懂View的测量机制,在前面的几节中我们或多或少有提到控件的测量,也曾经说过Android提供给我们能够操纵控件测量的方法是onMeasure:

[java]view plain copy print ?@Override protectedvoidonMeasure(intwidthMeasureSpec,intheightMeasureSpec){ super.onMeasure(widthMeasureSpec,heightMeasureSpec); } 默认情况下onMeasure方法中只是简单地将签名列表中的两个int型参数回传给父类的onMeasure方法,然后由父类的方法去计算出最终的测量值。但是,这里有个问题非常重要,就是onMeasure签名列表中的这两个参数是从何而来,这里可以告诉大家的是,这两个参数是由view的父容器,代码中也就是我们的LinearLayout传递进来的,很多初学Android的朋友会将位于xml布局文件顶端的控件称之为根布局,比如这里我们的LinearLayout,而事实上在Android的GUI框架中,这个LinearLayout还称不上根布局,我们知道一个Activity可以对应一个View(也可以是ViewGroup),很多情况下我们会通过Activity的setContentView方法去设置我们的View:

[java]view plain copy print ?@Override publicvoidonCreate(BundlesavedInstanceState){ super.onCreate(savedInstanceState); setContentView(R.layout.activity_main); } setContentView在Activity内的实现也非常简单,就是调用getWindow方法获取一个Window类型的对象并调用其setContentView方法:

[java]view plain copy print ?publicvoidsetContentView(intlayoutResID){ getWindow().setContentView(layoutResID); initActionBar(); } 而这个Window对象

[java]view plain copy print ?publicWindowgetWindow(){ returnmWindow; } 其本质也就是一个PhoneWindow,在Activity的attach方法中通过makeNewWindow生成:

[java]view plain copy print ?finalvoidattach(Contextcontext,ActivityThreadaThread, //此处省去一些代码…… mWindow=PolicyManager.makeNewWindow(this); mWindow.setCallback(this); mWindow.getLayoutInflater().setPrivateFactory(this); if(info.softInputMode!=WindowManager.LayoutParams.SOFT_INPUT_STATE_UNSPECIFIED){ mWindow.setSoftInputMode(info.softInputMode); } if(info.uiOptions!=0){ mWindow.setUiOptions(info.uiOptions); } //此处省去巨量代码…… } 在PolicyManager中通过反射的方式获取com.android.internal.policy.impl.Policy的一个实例:

[java]view plain copy print ?publicfinalclassPolicyManager{ privatestaticfinalStringPOLICY_IMPL_CLASS_NAME= "com.android.internal.policy.impl.Policy"; privatestaticfinalIPolicysPolicy; static{ try{ ClasspolicyClass=Class.forName(POLICY_IMPL_CLASS_NAME); sPolicy=(IPolicy)policyClass.newInstance(); }catch(ClassNotFoundExceptionex){ thrownewRuntimeException( POLICY_IMPL_CLASS_NAME+"couldnotbeloaded",ex); }catch(InstantiationExceptionex){ thrownewRuntimeException( POLICY_IMPL_CLASS_NAME+"couldnotbeinstantiated",ex); }catch(IllegalAccessExceptionex){ thrownewRuntimeException( POLICY_IMPL_CLASS_NAME+"couldnotbeinstantiated",ex); } } //省去构造方法…… publicstaticWindowmakeNewWindow(Contextcontext){ returnsPolicy.makeNewWindow(context); } //省去无关代码…… } 并通过其内部的makeNewWindow实现返回一个PhoneWindow对象:

[java]view plain copy print ?publicWindowmakeNewWindow(Contextcontext){ returnnewPhoneWindow(context); } PhoneWindow是Window的一个子类,其对Window中定义的大量抽象方法作了具体的实现,比如我们的setContentView方法在Window中仅做了一个抽象方法定义:

[java]view plain copy print ?publicabstractclassWindow{ //省去不可估量的代码…… publicabstractvoidsetContentView(intlayoutResID); publicabstractvoidsetContentView(Viewview); publicabstractvoidsetContentView(Viewview,ViewGroup.LayoutParamsparams); //省去数以亿计的代码…… } 其在PhoneWindow中都有具体的实现:

[java]view plain copy print ?publicclassPhoneWindowextendsWindowimplementsMenuBuilder.Callback{ //省去草泥马个代码…… @Override publicvoidsetContentView(intlayoutResID){ if(mContentParent==null){ installDecor(); }else{ mContentParent.removeAllViews(); } mLayoutInflater.inflate(layoutResID,mContentParent); finalCallbackcb=getCallback(); if(cb!=null&&!isDestroyed()){ cb.onContentChanged(); } } @Override publicvoidsetContentView(Viewview){ setContentView(view,newViewGroup.LayoutParams(MATCH_PARENT,MATCH_PARENT)); } @Override publicvoidsetContentView(Viewview,ViewGroup.LayoutParamsparams){ if(mContentParent==null){ installDecor(); }else{ mContentParent.removeAllViews(); } mContentParent.addView(view,params); finalCallbackcb=getCallback(); if(cb!=null&&!isDestroyed()){ cb.onContentChanged(); } } //省去法克鱿个代码…… } 当然如果你要是使用了TV的SDK那么这里就不是PhoneWindow而是TVWindow了,至于是不是呢?留给大家去验证。到这里我们都还没完,在PhoneWindow的setContentView方法中先会去判断mContentParent这个引用是否为空,如果为空则表示我们是第一次生成那么调用installDecor方法去生成一些具体的对象否则清空该mContentParent下的所有子元素(注意mContentParent是一个ViewGroup)并通过LayoutInflater将xml布局转换为View Tree添加至mContentParent中(这里根据setContentView(int layoutResID)方法分析,其他重载方法类似),installDecor方法做的事相对多但不复杂,首先是对DecorView类型的mDecor成员变量赋值继而将其注入generateLayout方法生成我们的mContentParent:

[java]view plain copy print ?privatevoidinstallDecor(){ if(mDecor==null){ mDecor=generateDecor(); //省省省…… } if(mContentParent==null){ mContentParent=generateLayout(mDecor); //省省省…… } //省省省…… } generateLayout方法中做的事就多了,简直可以跟performTraversals拼,这里不贴代码了简单分析一下,generateLayout方法中主要根据当前我们的Style类型为当前Window选择不同的布局文件,看到这里,想必大家也该意识到,这才是我们的“根布局”,其会指定一个用来存放我们自定义布局文件(也就是我们口头上常说的根布局比如我们例子中的LinearLayout)的ViewGroup,一般情况下这个ViewGroup的重任由FrameLayout来承担,这也是为什么我们在获取我们xml布局文件中的顶层布局时调用其getParent()方法会返回FrameLayout对象的原因,其id为android:id="@android:id/content":

[java]view plain copy print ?protectedViewGroupgenerateLayout(DecorViewdecor){ //省去巨量代码…… ViewGroupcontentParent=(ViewGroup)findViewById(ID_ANDROID_CONTENT); //省去一些代码…… } 在这个Window布局文件被确定后,mDecor则会将该布局所生成的对应View添加进来并获取id为content的View将其赋给mContentParent,至此mContentParent和mDecor均已生成,而我们xml布局文件中的布局则会被添加至mContentParent。对应关系类似下图:

说了大半天才理清这个小关系,但是我们还没说到重点…………………………就是widthMeasureSpec和heightMeasureSpec究竟是从哪来的……………………如果我们不做上面的一个分析,很多童鞋压根无从下手,有了上面一个分析,我们知道我们界面的真正根视图应该是DecorView,那么我们的widthMeasureSpec和heightMeasureSpec应该从这里或者更上一层PhoneWindow传递进来对吧,但是DecorView是FrameLayout的一个实例,在FrameLayout的onMeasure中我们确实有对子元素的测量,但是问题是FrameLayout:onMeasure方法中的widthMeasureSpec和heightMeasureSpec又是从何而来呢?追溯上去我们又回到了View…………………………………………………………不了解Android GUI框架的童鞋迈出的第一步就被无情地煽了回去。其实在Android中我们可以在很多方面看到类似MVC架构的影子,比如最最常见的就是我们的xml界面布局——Activity等组件——model数据之间的关系,而在整个GUI的框架中,我们也可以对其做出类似的规划,View在设计过程中就注定了其只会对显示数据进行处理比如我们的测量布局和绘制还有动画等等,而承担Controller控制器重任的是谁呢?在Android中这一功能由ViewRootImpl承担,我们在前面提到过这个类,其负责的东西很多,比如我们窗口的显示、用户的输入输出当然还有关于处理我们绘制流程的方法:

[java]view plain copy print ?privatevoidperformTraversals(){ //………………啦啦啦啦……………… } performTraversals方法是处理绘制流程的一个开始,内部逻辑相当相当多&复杂,虽然没有View类复杂……但是让我选的话我宁愿看整个View类也不愿看performTraversals方法那邪恶的逻辑…………囧,在该方法中我们可以看到如下的一段逻辑(具体各类变量的赋值就不贴了实在太多):

[java]view plain copy print ?privatevoidperformTraversals(){ //………省略宇宙尘埃数量那么多的代码……… if(!mStopped){ //……省略一些代码 intchildWidthMeasureSpec=getRootMeasureSpec(mWidth,lp.width); intchildHeightMeasureSpec=getRootMeasureSpec(mHeight,lp.height); //……省省省 performMeasure(childWidthMeasureSpec,childHeightMeasureSpec); } //………省略人体细胞数量那么多的代码……… } 可以看到在performTraversals方法中通过getRootMeasureSpec获取原始的测量规格并将其作为参数传递给performMeasure方法处理,这里我们重点来看getRootMeasureSpec方法是如何确定测量规格的,首先我们要知道mWidth, lp.width和mHeight, lp.height这两组参数的意义,其中lp.width和lp.height均为MATCH_PARENT,其在mWindowAttributes(WindowManager.LayoutParams类型)将值赋予给lp时就已被确定,mWidth和mHeight表示当前窗口的大小,其值由performTraversals中一系列逻辑计算确定,这里跳过,而在getRootMeasureSpec中作了如下判断:

[java]view plain copy print ?privatestaticintgetRootMeasureSpec(intwindowSize,introotDimension){ intmeasureSpec; switch(rootDimension){ caseViewGroup.LayoutParams.MATCH_PARENT: //Window不能调整其大小,强制使根视图大小与Window一致 measureSpec=MeasureSpec.makeMeasureSpec(windowSize,MeasureSpec.EXACTLY); break; caseViewGroup.LayoutParams.WRAP_CONTENT: //Window可以调整其大小,为根视图设置一个最大值 measureSpec=MeasureSpec.makeMeasureSpec(windowSize,MeasureSpec.AT_MOST); break; default: //Window想要一个确定的尺寸,强制将根视图的尺寸作为其尺寸 measureSpec=MeasureSpec.makeMeasureSpec(rootDimension,MeasureSpec.EXACTLY); break; } returnmeasureSpec; } 也就是说不管如何,我们的根视图大小必定都是全屏的……

至此,我们算是真正接触到根视图的测量规格,尔后这个规格会被由上至下传递下去,并由当前view与其父容器共同作用决定最终的测量大小,在View与ViewGroup递归调用实现测量的过程中有几个重要的方法,对于View而言则是measure方法:

[java]view plain copy print ?publicfinalvoidmeasure(intwidthMeasureSpec,intheightMeasureSpec){ //省略部分代码…… /* *判断当前mPrivateFlags是否带有PFLAG_FORCE_LAYOUT强制布局标记 *判断当前widthMeasureSpec和heightMeasureSpec是否发生了改变 */ if((mPrivateFlags&PFLAG_FORCE_LAYOUT)==PFLAG_FORCE_LAYOUT|| widthMeasureSpec!=mOldWidthMeasureSpec|| heightMeasureSpec!=mOldHeightMeasureSpec){ //如果发生了改变表示需要重新进行测量此时清除掉mPrivateFlags中已测量的标识位PFLAG_MEASURED_DIMENSION_SET mPrivateFlags&=~PFLAG_MEASURED_DIMENSION_SET; resolveRtlPropertiesIfNeeded(); intcacheIndex=(mPrivateFlags&PFLAG_FORCE_LAYOUT)==PFLAG_FORCE_LAYOUT?-1: mMeasureCache.indexOfKey(key); if(cacheIndex<0||sIgnoreMeasureCache){ //测量View的尺寸 onMeasure(widthMeasureSpec,heightMeasureSpec); mPrivateFlags3&=~PFLAG3_MEASURE_NEEDED_BEFORE_LAYOUT; }else{ longvalue=mMeasureCache.valueAt(cacheIndex); setMeasuredDimension((int)(value>>32),(int)value); mPrivateFlags3|=PFLAG3_MEASURE_NEEDED_BEFORE_LAYOUT; } /* *如果mPrivateFlags里没有表示已测量的标识位PFLAG_MEASURED_DIMENSION_SET则会抛出异常 */ if((mPrivateFlags&PFLAG_MEASURED_DIMENSION_SET)!=PFLAG_MEASURED_DIMENSION_SET){ thrownewIllegalStateException("onMeasure()didnotsetthe" +"measureddimensionbycalling" +"setMeasuredDimension()"); } //如果已测量View那么就可以往mPrivateFlags添加标识位PFLAG_LAYOUT_REQUIRED表示可以进行布局了 mPrivateFlags|=PFLAG_LAYOUT_REQUIRED; } //最后存储测量完成的测量规格 mOldWidthMeasureSpec=widthMeasureSpec; mOldHeightMeasureSpec=heightMeasureSpec; mMeasureCache.put(key,((long)mMeasuredWidth)<<32| (long)mMeasuredHeight&0xffffffffL);//suppresssignextension } 可以看到,View对控件的测量是在onMeasure方法中进行的,也就是文章开头我们在自定义View中重写的onMeasure方法,但是我们并没有对其做任何的处理,也就是说保持了其在父类View中的默认实现,其默认实现也很简单:

[java]view plain copy print ?protectedvoidonMeasure(intwidthMeasureSpec,intheightMeasureSpec){ setMeasuredDimension(getDefaultSize(getSuggestedMinimumWidth(),widthMeasureSpec), getDefaultSize(getSuggestedMinimumHeight(),heightMeasureSpec)); } 其直接调用了setMeasuredDimension方法为其设置了两个计算后的测量值:

[java]view plain copy print ?protectedfinalvoidsetMeasuredDimension(intmeasuredWidth,intmeasuredHeight){ //省去部分代码…… //设置测量后的宽高 mMeasuredWidth=measuredWidth; mMeasuredHeight=measuredHeight; //重新将已测量标识位存入mPrivateFlags标识测量的完成 mPrivateFlags|=PFLAG_MEASURED_DIMENSION_SET; } 回到onMeasure方法,我们来看看这两个测量值具体是怎么获得的,其实非常简单,首先来看getSuggestedMinimumWidth方法:

[java]view plain copy print ?protectedintgetSuggestedMinimumWidth(){ return(mBackground==null)?mMinWidth:max(mMinWidth,mBackground.getMinimumWidth()); } 如果背景为空那么我们直接返回mMinWidth最小宽度否则就在mMinWidth和背景最小宽度之间取一个最大值,getSuggestedMinimumHeight类同,mMinWidth和mMinHeight我没记错的话应该都是100px,而getDefaultSize方法呢也很简单:

[java]view plain copy print ?publicstaticintgetDefaultSize(intsize,intmeasureSpec){ //将我们获得的最小值赋给result intresult=size; //从measureSpec中解算出测量规格的模式和尺寸 intspecMode=MeasureSpec.getMode(measureSpec); intspecSize=MeasureSpec.getSize(measureSpec); /* *根据测量规格模式确定最终的测量尺寸 */ switch(specMode){ caseMeasureSpec.UNSPECIFIED: result=size; break; caseMeasureSpec.AT_MOST: caseMeasureSpec.EXACTLY: result=specSize; break; } returnresult; } 注意上述代码中当模式为AT_MOST和EXACTLY时均会返回解算出的测量尺寸,还记得上面我们说的PhoneWindow、DecorView么从它们那里获取到的测量规格层层传递到我们的自定义View中,这就是为什么我们的View在默认情况下不管是math_parent还是warp_content都能占满父容器的剩余空间(这里面还有父布局LinearLayout的作用就先略过了了解即可)。上述onMeasure的过程则是View默认的处理过程,如果我们不喜欢Android帮我们处理那么我们可以自己重写onMeasure实现自己的测量逻辑:

[java]view plain copy print ?@Override protectedvoidonMeasure(intwidthMeasureSpec,intheightMeasureSpec){ //设置测量尺寸 setMeasuredDimension(250,250); } 最简单的粗暴的就是直接将两个值作为参数传入setMeasuredDimension方法,效果如下:

当然这样不好,用Android官方的话来说就是太过“专政”,因为它完全摒弃了父容器的意愿,完全由自己决定了大小,如果大家逛blog看技术文章或者听别人讨论常常会听到别人这么说view的最终测量尺寸是由view本身何其父容器共同决定的,至于如何共同决定我们呆会再说,这里我们先看看如何能在一定程度上顺应爹的“意愿”呢?从View默认的测量模式中我们可以看到它频繁使用了一个叫做MeasureSpec的类,而在ViewRootImpl中呢也有大量用到该类,该类的具体说明大家可以围观我早期的一篇文章:/aigestudio/article/details/38636531,里面有对MeasureSpec类的详细说明,这里我就简单概述下MeasureSpec类中的三个Mode常量值的意义,其中UNSPECIFIED表示未指定,爹不会对儿子作任何的束缚,儿子想要多大都可以;EXACTLY表示完全的,意为儿子多大爹心里有数,爹早已算好了;AT_MOST表示至多,爹已经为儿子设置好了一个最大限制,儿子你不能比这个值大,不能再多了!父容器所谓的“意图”其实就由上述三个常量值表现,既然如此我们就该对这三个Mode常量做一个判断才行,不然怎么知道爹的意图呢:

[java]view plain copy print ?@Override protectedvoidonMeasure(intwidthMeasureSpec,intheightMeasureSpec){ //声明一个临时变量来存储计算出的测量值 intresultWidth=0; //获取宽度测量规格中的mode intmodeWidth=MeasureSpec.getMode(widthMeasureSpec); //获取宽度测量规格中的size intsizeWidth=MeasureSpec.getSize(widthMeasureSpec); /* *如果爹心里有数 */ if(modeWidth==MeasureSpec.EXACTLY){ //那么儿子也不要让爹难做就取爹给的大小吧 resultWidth=sizeWidth; } /* *如果爹心里没数 */ else{ //那么儿子可要自己看看自己需要多大了 resultWidth=mBitmap.getWidth(); /* *如果爹给儿子的是一个限制值 */ if(modeWidth==MeasureSpec.AT_MOST){ //那么儿子自己的需求就要跟爹的限制比比看谁小要谁 resultWidth=Math.min(resultWidth,sizeWidth); } } intresultHeight=0; intmodeHeight=MeasureSpec.getMode(heightMeasureSpec); intsizeHeight=MeasureSpec.getSize(heightMeasureSpec); if(modeHeight==MeasureSpec.EXACTLY){ resultHeight=sizeHeight; }else{ resultHeight=mBitmap.getHeight(); if(modeHeight==MeasureSpec.AT_MOST){ resultHeight=Math.min(resultHeight,sizeHeight); } } //设置测量尺寸 setMeasuredDimension(resultWidth,resultHeight); } 如上代码所示我们从父容器传来的MeasureSpec中分离出了mode和size,size只是一个期望值我们需要根据mode来计算最终的size,如果父容器对子元素没有一个确切的大小那么我们就需要尝试去计算子元素也就是我们的自定义View的大小,而这部分大小更多的是由我们也就是开发者去根据实际情况计算的,这里我们模拟的是一个显示图片的控件,那么控件的实际大小就应该跟我们的图片一致,但是虽然我们可以做出一定的决定也要考虑父容器的限制值,当mode为AT_MOST时size则是父容器给予我们的一个最大值,我们控件的大小就不应该超过这个值。下面是运行效果:

如我所说,控件的实际大小需要根据我们的实际需求去计算,这里我更改一下xml为我们的ImgView加一个内边距值:

[html]view plain copy print ?<LinearLayoutxmlns:android="/apk/res/android" android:layout_width="match_parent" android:layout_height="match_parent" android:background="#FFFFFFFF" android:orientation="vertical"> <com.aigestudio.customviewdemo.views.ImgView android:id="@+id/main_pv" android:layout_width="wrap_content" android:layout_height="wrap_content" android:padding="20dp"/> <Button android:layout_width="wrap_content" android:layout_height="wrap_content" android:text="AigeStudio"/> <TextView android:layout_width="wrap_content" android:layout_height="wrap_content" android:text="AigeStudio"/> </LinearLayout> 这时你会发现蛋疼了……毫无内边距的效果,而在这种情况下我们则需在计算控件尺寸时考虑内边距的大小:

[java]view plain copy print ?resultWidth=mBitmap.getWidth()+getPaddingLeft()+getPaddingRight(); resultHeight=mBitmap.getHeight()+getPaddingTop()+getPaddingBottom(); 这时我们就有了内边距的效果对吧:

诶、等等,好像不对啊,上边距和左边距为什么没有了?原因很简单,因为我们在绘制时并没有考虑到Padding的影响,下面我们更改一下绘制逻辑:

[java]view plain copy print ?@Override protectedvoidonDraw(Canvascanvas){ //绘制位图 canvas.drawBitmap(mBitmap,getPaddingLeft(),getPaddingTop(),null); } 这时我们的内边距就完美了:

很多朋友问那Margin外边距呢??淡定,外边距轮不到view来算,Andorid将其封装在LayoutParams内交由父容器统一处理。很多时候我们的控件往往不只是一张简单的图片那么乏味,比如类似图标的效果:

一个图标常常除了一张图片外底部还有一个title,这时我们的测量逻辑就应该做出相应的改变了,这里我用一个新的IconView去做:

[java]view plain copy print ?/** * *@authorAigeStudio{@link/aigestudio} *@since/1/13 * */ publicclassIconViewextendsView{ privateBitmapmBitmap;//位图 privateTextPaintmPaint;//绘制文本的画笔 privateStringmStr;//绘制的文本 privatefloatmTextSize;//画笔的文本尺寸 /** *宽高枚举类 * *@authorAigeStudio{@link/aigestudio} * */ privateenumRatio{ WIDTH,HEIGHT } publicIconView(Contextcontext,AttributeSetattrs){ super(context,attrs); //计算参数 calArgs(context); //初始化 init(); } /** *参数计算 * *@paramcontext *上下文环境引用 */ privatevoidcalArgs(Contextcontext){ //获取屏幕宽 intsreenW=MeasureUtil.getScreenSize((Activity)context)[0]; //计算文本尺寸 mTextSize=sreenW*1/10F; } /** *初始化 */ privatevoidinit(){ /* *获取Bitmap */ if(null==mBitmap){ mBitmap=BitmapFactory.decodeResource(getResources(),R.drawable.logo); } /* *为mStr赋值 */ if(null==mStr||mStr.trim().length()==0){ mStr="AigeStudio"; } /* *初始化画笔并设置参数 */ mPaint=newTextPaint(Paint.ANTI_ALIAS_FLAG|Paint.DITHER_FLAG|Paint.LINEAR_TEXT_FLAG); mPaint.setColor(Color.LTGRAY); mPaint.setTextSize(mTextSize); mPaint.setTextAlign(Paint.Align.CENTER); mPaint.setTypeface(Typeface.DEFAULT_BOLD); } @Override protectedvoidonMeasure(intwidthMeasureSpec,intheightMeasureSpec){ //设置测量后的尺寸 setMeasuredDimension(getMeasureSize(widthMeasureSpec,Ratio.WIDTH),getMeasureSize(heightMeasureSpec,Ratio.HEIGHT)); } /** *获取测量后的尺寸 * *@parammeasureSpec *测量规格 *@paramratio *宽高标识 *@return宽或高的测量值 */ privateintgetMeasureSize(intmeasureSpec,Ratioratio){ //声明临时变量保存测量值 intresult=0; /* *获取mode和size */ intmode=MeasureSpec.getMode(measureSpec); intsize=MeasureSpec.getSize(measureSpec); /* *判断mode的具体值 */ switch(mode){ caseMeasureSpec.EXACTLY://EXACTLY时直接赋值 result=size; break; default://默认情况下将UNSPECIFIED和AT_MOST一并处理 if(ratio==Ratio.WIDTH){ floattextWidth=mPaint.measureText(mStr); result=((int)(textWidth>=mBitmap.getWidth()?textWidth:mBitmap.getWidth()))+getPaddingLeft()+getPaddingRight(); }elseif(ratio==Ratio.HEIGHT){ result=((int)((mPaint.descent()-mPaint.ascent())*2+mBitmap.getHeight()))+getPaddingTop()+getPaddingBottom(); } /* *AT_MOST时判断size和result的大小取小值 */ if(mode==MeasureSpec.AT_MOST){ result=Math.min(result,size); } break; } returnresult; } @Override protectedvoidonDraw(Canvascanvas){ /* *绘制 *参数就不做单独处理了因为只会Draw一次不会频繁调用 */ canvas.drawBitmap(mBitmap,getWidth()/2-mBitmap.getWidth()/2,getHeight()/2-mBitmap.getHeight()/2,null); canvas.drawText(mStr,getWidth()/2,mBitmap.getHeight()+getHeight()/2-mBitmap.getHeight()/2-mPaint.ascent(),mPaint); } } 在xml文件中对其引用并加入一些系统自带的控件:

[html]view plain copy print ?<LinearLayoutxmlns:android="/apk/res/android" android:layout_width="match_parent" android:layout_height="match_parent" android:background="#FFFFFFFF" android:orientation="vertical"> <com.aigestudio.customviewdemo.views.IconView android:id="@+id/main_pv" android:layout_width="wrap_content" android:layout_height="wrap_content" android:padding="50dp"/> <Button android:layout_width="wrap_content" android:layout_height="wrap_content" android:text="AigeStudio"/> <TextView android:layout_width="wrap_content" android:layout_height="wrap_content" android:text="AigeStudio"/> </LinearLayout> 效果如下:

好了就先这样吧,上面我们曾说过View的测量大小是由View和其父容器共同决定的,但是上述源码的分析中我们其实并没有体现,因为它们都在ViewGroup中,这里我们就要涉及ViewGroup中与测量相关的另外几个方法:measureChildren、measureChild和measureChildWithMargins还有getChildMeasureSpec,见名知意这几个方法都跟ViewGroup测量子元素有关,其中measureChildWithMargins和measureChildren类似只是加入了对Margins外边距的处理,ViewGroup提供对子元素测量的方法从measureChildren开始:

[java]view plain copy print ?protectedvoidmeasureChildren(intwidthMeasureSpec,intheightMeasureSpec){ finalintsize=mChildrenCount; finalView[]children=mChildren; for(inti=0;i<size;++i){ finalViewchild=children[i]; if((child.mViewFlags&VISIBILITY_MASK)!=GONE){ measureChild(child,widthMeasureSpec,heightMeasureSpec); } } } measureChildren的逻辑很简单,通过父容器传入的widthMeasureSpec和heightMeasureSpec遍历子元素并调用measureChild方法去测量每一个子元素的宽高:

[java]view plain copy print ?protectedvoidmeasureChild(Viewchild,intparentWidthMeasureSpec, intparentHeightMeasureSpec){ //获取子元素的布局参数 finalLayoutParamslp=child.getLayoutParams(); /* *将父容器的测量规格已经上下和左右的边距还有子元素本身的布局参数传入getChildMeasureSpec方法计算最终测量规格 */ finalintchildWidthMeasureSpec=getChildMeasureSpec(parentWidthMeasureSpec, mPaddingLeft+mPaddingRight,lp.width); finalintchildHeightMeasureSpec=getChildMeasureSpec(parentHeightMeasureSpec, mPaddingTop+mPaddingBottom,lp.height); //调用子元素的measure传入计算好的测量规格 child.measure(childWidthMeasureSpec,childHeightMeasureSpec); } 这里我们主要就是看看getChildMeasureSpec方法是如何确定最终测量规格的:

[java]view plain copy print ?publicstaticintgetChildMeasureSpec(intspec,intpadding,intchildDimension){ //获取父容器的测量模式和尺寸大小 intspecMode=MeasureSpec.getMode(spec); intspecSize=MeasureSpec.getSize(spec); //这个尺寸应该减去内边距的值 intsize=Math.max(0,specSize-padding); //声明临时变量存值 intresultSize=0; intresultMode=0; /* *根据模式判断 */ switch(specMode){ caseMeasureSpec.EXACTLY://父容器尺寸大小是一个确定的值 /* *根据子元素的布局参数判断 */ if(childDimension>=0){//如果childDimension是一个具体的值 //那么就将该值作为结果 resultSize=childDimension; //而这个值也是被确定的 resultMode=MeasureSpec.EXACTLY; }elseif(childDimension==LayoutParams.MATCH_PARENT){//如果子元素的布局参数为MATCH_PARENT //那么就将父容器的大小作为结果 resultSize=size; //因为父容器的大小是被确定的所以子元素大小也是可以被确定的 resultMode=MeasureSpec.EXACTLY; }elseif(childDimension==LayoutParams.WRAP_CONTENT){//如果子元素的布局参数为WRAP_CONTENT //那么就将父容器的大小作为结果 resultSize=size; //但是子元素的大小包裹了其内容后不能超过父容器 resultMode=MeasureSpec.AT_MOST; } break; caseMeasureSpec.AT_MOST://父容器尺寸大小拥有一个限制值 /* *根据子元素的布局参数判断 */ if(childDimension>=0){//如果childDimension是一个具体的值 //那么就将该值作为结果 resultSize=childDimension; //而这个值也是被确定的 resultMode=MeasureSpec.EXACTLY; }elseif(childDimension==LayoutParams.MATCH_PARENT){//如果子元素的布局参数为MATCH_PARENT //那么就将父容器的大小作为结果 resultSize=size; //因为父容器的大小是受到限制值的限制所以子元素的大小也应该受到父容器的限制 resultMode=MeasureSpec.AT_MOST; }elseif(childDimension==LayoutParams.WRAP_CONTENT){//如果子元素的布局参数为WRAP_CONTENT //那么就将父容器的大小作为结果 resultSize=size; //但是子元素的大小包裹了其内容后不能超过父容器 resultMode=MeasureSpec.AT_MOST; } break; caseMeasureSpec.UNSPECIFIED://父容器尺寸大小未受限制 /* *根据子元素的布局参数判断 */ if(childDimension>=0){//如果childDimension是一个具体的值 //那么就将该值作为结果 resultSize=childDimension; //而这个值也是被确定的 resultMode=MeasureSpec.EXACTLY; }elseif(childDimension==LayoutParams.MATCH_PARENT){//如果子元素的布局参数为MATCH_PARENT //因为父容器的大小不受限制而对子元素来说也可以是任意大小所以不指定也不限制子元素的大小 resultSize=0; resultMode=MeasureSpec.UNSPECIFIED; }elseif(childDimension==LayoutParams.WRAP_CONTENT){//如果子元素的布局参数为WRAP_CONTENT //因为父容器的大小不受限制而对子元素来说也可以是任意大小所以不指定也不限制子元素的大小 resultSize=0; resultMode=MeasureSpec.UNSPECIFIED; } break; } //返回封装后的测量规格 returnMeasureSpec.makeMeasureSpec(resultSize,resultMode); } 至此我们可以看到一个View的大小由其父容器的测量规格MeasureSpec和View本身的布局参数LayoutParams共同决定,但是即便如此,最终封装的测量规格也是一个期望值,究竟有多大还是我们调用setMeasuredDimension方法设置的。上面的代码中有些朋友看了可能会有疑问为什么childDimension >= 0就表示一个确切值呢?原因很简单,因为在LayoutParams中MATCH_PARENT和WRAP_CONTENT均为负数、哈哈!!正是基于这点,Android巧妙地将实际值和相对的布局参数分离开来。那么我们该如何对ViewGroup进行测量呢?这里为了说明问题,我们自定义一个ViewGroup:

[java]view plain copy print ?/** * *@authorAigeStudio{@link/aigestudio} *@since/1/15 * */ publicclassCustomLayoutextendsViewGroup{ publicCustomLayout(Contextcontext,AttributeSetattrs){ super(context,attrs); } @Override protectedvoidonLayout(booleanchanged,intl,intt,intr,intb){ } } ViewGroup中的onLayout方法是一个抽象方法,这意味着你在继承时必须实现,onLayout的目的是为了确定子元素在父容器中的位置,那么这个步骤理应该由父容器来决定而不是子元素,因此,我们可以猜到View中的onLayout方法应该是一个空实现:

[java]view plain copy print ?publicclassViewimplementsDrawable.Callback,KeyEvent.Callback, AccessibilityEventSource{ //省去无数代码……………… /** *Calledfromlayoutwhenthisviewshould *assignasizeandpositiontoeachofitschildren. * *Derivedclasseswithchildrenshouldoverride *thismethodandcalllayoutoneachof *theirchildren. *@paramchangedThisisanewsizeorpositionforthisview *@paramleftLeftposition,relativetoparent *@paramtopTopposition,relativetoparent *@paramrightRightposition,relativetoparent *@parambottomBottomposition,relativetoparent */ protectedvoidonLayout(booleanchanged,intleft,inttop,intright,intbottom){ } //省去无数代码……………… } 与View不同的是,ViewGroup表示一个容器,其内可以包含多个元素,既可以是一个布局也可以是一个普通的控件,那么在对ViewGroup测量时我们也应该对这些子元素进行测量:

[java]view plain copy print ?/** * *@authorAigeStudio{@link/aigestudio} *@since/1/15 * */ publicclassCustomLayoutextendsViewGroup{ publicCustomLayout(Contextcontext,AttributeSetattrs){ super(context,attrs); } @Override protectedvoidonMeasure(intwidthMeasureSpec,intheightMeasureSpec){ super.onMeasure(widthMeasureSpec,heightMeasureSpec); /* *如果有子元素 */ if(getChildCount()>0){ //那么对子元素进行测量 measureChildren(widthMeasureSpec,heightMeasureSpec); } } @Override protectedvoidonLayout(booleanchanged,intl,intt,intr,intb){ } } 然后我们在xml布局文件中替换原来的LinearLayout使用我们自定义的布局:

[html]view plain copy print ?<com.aigestudio.customviewdemo.views.CustomLayoutxmlns:android="/apk/res/android" android:layout_width="match_parent" android:layout_height="match_parent" android:background="#FFFFFFFF" android:orientation="vertical"> <com.aigestudio.customviewdemo.views.IconView android:id="@+id/main_pv" android:layout_width="wrap_content" android:layout_height="wrap_content" android:padding="50dp"/> <Button android:layout_width="wrap_content" android:layout_height="wrap_content" android:text="AigeStudio"/> <TextView android:layout_width="wrap_content" android:layout_height="wrap_content" android:text="AigeStudio"/> </com.aigestudio.customviewdemo.views.CustomLayout> 运行后你会发现没有任何东西显示,为什么呢?如上所说我们需要父容器告诉子元素它的出现位置,而这个过程由onLayout方法去实现,但是此时我们的onLayout方法什么都没有,子元素自然也不知道自己该往哪搁,自然就什么都没有咯……知道了原因我们就来实现onLayout的逻辑:

[java]view plain copy print ?@Override protectedvoidonLayout(booleanchanged,intl,intt,intr,intb){ /* *如果有子元素 */ if(getChildCount()>0){ //那么遍历子元素并对其进行定位布局 for(inti=0;i<getChildCount();i++){ Viewchild=getChildAt(i); child.layout(0,0,getMeasuredWidth(),getMeasuredHeight()); } } } 逻辑很简单,如果有子元素那么我们遍历这些子元素并调用其layout方法告诉它们自己该在的位置,这里我们就直接让所有的子元素都从父容器的[0, 0]点开始到[getMeasuredWidth(), getMeasuredHeight()]父容器的测量宽高结束,这么一来,所有的子元素应该都是填充了父容器的对吧:

看到屏幕上的巨大Button我不禁吸了一口屁!这样的布局太蛋疼,全被Button一个玩完了还搞毛,可不可以像LinearLayout那样挨个显示呢?答案是肯定的!我们来修改下onLayout的逻辑:

[java]view plain copy print ?@Override protectedvoidonLayout(booleanchanged,intl,intt,intr,intb){ /* *如果有子元素 */ if(getChildCount()>0){ //声明一个临时变量存储高度倍增值 intmutilHeight=0; //那么遍历子元素并对其进行定位布局 for(inti=0;i<getChildCount();i++){ //获取一个子元素 Viewchild=getChildAt(i); //通知子元素进行布局 child.layout(0,mutilHeight,child.getMeasuredWidth(),child.getMeasuredHeight()+mutilHeight); //改变高度倍增值 mutilHeight+=child.getMeasuredHeight(); } } } 可以看到我们通过一个mutilHeight来存储高度倍增值,每一次子元素布局完后将当前mutilHeight与当前子元素的高度相加并在下一个子元素布局时在高度上加上mutilHeight,效果如下:

是不是和上面LinearLayout效果有点一样了?当然LinearLayout的布局逻辑远比我们的复杂得多,我们呢也只是对其进行一个简单的模拟而已。大家注意到ViewGroup的onLayout方法的签名列表中有五个参数,其中boolean changed表示是否与上一次位置不同,其具体值在View的layout方法中通过setFrame等方法确定:

[java]view plain copy print ?publicvoidlayout(intl,intt,intr,intb){ //省略一些代码…… booleanchanged=isLayoutModeOptical(mParent)? setOpticalFrame(l,t,r,b):setFrame(l,t,r,b); //省略大量代码…… } 而剩下的四个参数则表示当前View与父容器的相对距离,如下图:

好了,说到这里想必大家对ViewGroup的测量也有一定的了解了,但是这必定不是测量过程全部,如我上面所说,测量的具体过程因控件而异,上面我们曾因为给我们的自定义View加了内边距后修改了绘制的逻辑,因为我们需要在绘制时考虑内边距的影响,而我们的自定义ViewGroup呢?是不是也一样呢?这里我给其加入60dp的内边距:

[html]view plain copy print ?<com.aigestudio.customviewdemo.views.CustomLayoutxmlns:android="/apk/res/android" android:layout_width="match_parent" android:layout_height="match_parent" android:padding="60dp" android:background="#FFFFFFFF" android:orientation="vertical"> <com.aigestudio.customviewdemo.views.IconView android:id="@+id/main_pv" android:layout_width="wrap_content" android:layout_height="wrap_content" android:padding="50dp"/> <Button android:layout_width="wrap_content" android:layout_height="wrap_content" android:text="AigeStudio"/> <TextView android:layout_width="wrap_content" android:layout_height="wrap_content" android:text="AigeStudio"/> </com.aigestudio.customviewdemo.views.CustomLayout> 运行后效果如下:

内边距把我们的子元素给“吃”掉了,那么也就是说我们在对子元素进行定位时应该进一步考虑到父容器内边距的影响对吧,OK,我们重理onLayout的逻辑:

[java]view plain copy print ?@Override protectedvoidonLayout(booleanchanged,intl,intt,intr,intb){ //获取父容器内边距 intparentPaddingLeft=getPaddingLeft(); intparentPaddingTop=getPaddingTop(); /* *如果有子元素 */ if(getChildCount()>0){ //声明一个临时变量存储高度倍增值 intmutilHeight=0; //那么遍历子元素并对其进行定位布局 for(inti=0;i<getChildCount();i++){ //获取一个子元素 Viewchild=getChildAt(i); //通知子元素进行布局 //此时考虑父容器内边距的影响 child.layout(parentPaddingLeft,mutilHeight+parentPaddingTop,child.getMeasuredWidth()+parentPaddingLeft,child.getMeasuredHeight()+mutilHeight+parentPaddingTop); //改变高度倍增值 mutilHeight+=child.getMeasuredHeight(); } } } 此时的效果如下:

既然内边距如此,那么Margins外边距呢?我们来看看,在xml布局文件中为我们的CustomLayout加一个margins:

[html]view plain copy print ?<com.aigestudio.customviewdemo.views.CustomLayoutxmlns:android="/apk/res/android" android:layout_width="match_parent" android:layout_height="match_parent" android:layout_margin="30dp" android:padding="20dp" android:background="#FF597210" android:orientation="vertical"> <com.aigestudio.customviewdemo.views.IconView android:id="@+id/main_pv" android:layout_width="wrap_content" android:layout_height="wrap_content"/> <Button android:layout_width="wrap_content" android:layout_height="wrap_content" android:text="AigeStudio"/> <TextView android:layout_width="wrap_content" android:layout_height="wrap_content" android:text="AigeStudio"/> </com.aigestudio.customviewdemo.views.CustomLayout> 效果如下:

OK,目测没什么问题,可是当我们为子元素设置外边距时,问题就来了……不管你怎么设都不会有任何效果,原因很简单,我们上面也说了,Margins是由父容器来处理,而我们的CustomLayout中并没有对其做任何的处理,那么我们应该怎么做呢?首先要知道Margins封装在LayoutParams中,如果我们想实现自己对其的处理那么我们必然也有必要实现自己布局的LayoutParams:

[java]view plain copy print ?/** * *@authorAigeStudio{@link/aigestudio} *@since/1/15 * */ publicclassCustomLayoutextendsViewGroup{ //省略部分代码………… /** * *@authorAigeStudio{@link/aigestudio} * */ publicstaticclassCustomLayoutParamsextendsMarginLayoutParams{ publicCustomLayoutParams(MarginLayoutParamssource){ super(source); } publicCustomLayoutParams(android.view.ViewGroup.LayoutParamssource){ super(source); } publicCustomLayoutParams(Contextc,AttributeSetattrs){ super(c,attrs); } publicCustomLayoutParams(intwidth,intheight){ super(width,height); } } } 我们在我们的CustomLayout中生成了一个静态内部类CustomLayoutParams,保持其默认的构造方法即可,这里我们什么也没做,当然你可以定义自己的一些属性或逻辑处理,因控件而异这里不多说了,后面慢慢会用到。然后在我们的CustomLayout中重写所有与LayoutParams相关的方法,返回我们自己的CustomLayoutParams:

[java]view plain copy print ?/** * *@authorAigeStudio{@link/aigestudio} *@since/1/15 * */ publicclassCustomLayoutextendsViewGroup{ //省略部分代码………… /** *生成默认的布局参数 */ @Override protectedCustomLayoutParamsgenerateDefaultLayoutParams(){ returnnewCustomLayoutParams(ViewGroup.LayoutParams.MATCH_PARENT,ViewGroup.LayoutParams.MATCH_PARENT); } /** *生成布局参数 *将布局参数包装成我们的 */ @Override protectedandroid.view.ViewGroup.LayoutParamsgenerateLayoutParams(android.view.ViewGroup.LayoutParamsp){ returnnewCustomLayoutParams(p); } /** *生成布局参数 *从属性配置中生成我们的布局参数 */ @Override publicandroid.view.ViewGroup.LayoutParamsgenerateLayoutParams(AttributeSetattrs){ returnnewCustomLayoutParams(getContext(),attrs); } /** *检查当前布局参数是否是我们定义的类型这在code声明布局参数时常常用到 */ @Override protectedbooleancheckLayoutParams(android.view.ViewGroup.LayoutParamsp){ returnpinstanceofCustomLayoutParams; } //省略部分代码………… } 最后更改我们的测量逻辑:

[java]view plain copy print ?@Override protectedvoidonMeasure(intwidthMeasureSpec,intheightMeasureSpec){ //声明临时变量存储父容器的期望值 intparentDesireWidth=0; intparentDesireHeight=0; /* *如果有子元素 */ if(getChildCount()>0){ //那么遍历子元素并对其进行测量 for(inti=0;i<getChildCount();i++){ //获取子元素 Viewchild=getChildAt(i); //获取子元素的布局参数 CustomLayoutParamsclp=(CustomLayoutParams)child.getLayoutParams(); //测量子元素并考虑外边距 measureChildWithMargins(child,widthMeasureSpec,0,heightMeasureSpec,0); //计算父容器的期望值 parentDesireWidth+=child.getMeasuredWidth()+clp.leftMargin+clp.rightMargin; parentDesireHeight+=child.getMeasuredHeight()+clp.topMargin+clp.bottomMargin; } //考虑父容器的内边距 parentDesireWidth+=getPaddingLeft()+getPaddingRight(); parentDesireHeight+=getPaddingTop()+getPaddingBottom(); //尝试比较建议最小值和期望值的大小并取大值 parentDesireWidth=Math.max(parentDesireWidth,getSuggestedMinimumWidth()); parentDesireHeight=Math.max(parentDesireHeight,getSuggestedMinimumHeight()); } //设置最终测量值O setMeasuredDimension(resolveSize(parentDesireWidth,widthMeasureSpec),resolveSize(parentDesireHeight,heightMeasureSpec)); } @Override protectedvoidonLayout(booleanchanged,intl,intt,intr,intb){ //获取父容器内边距 intparentPaddingLeft=getPaddingLeft(); intparentPaddingTop=getPaddingTop(); /* *如果有子元素 */ if(getChildCount()>0){ //声明一个临时变量存储高度倍增值 intmutilHeight=0; //那么遍历子元素并对其进行定位布局 for(inti=0;i<getChildCount();i++){ //获取一个子元素 Viewchild=getChildAt(i); CustomLayoutParamsclp=(CustomLayoutParams)child.getLayoutParams(); //通知子元素进行布局 //此时考虑父容器内边距和子元素外边距的影响 child.layout(parentPaddingLeft+clp.leftMargin,mutilHeight+parentPaddingTop+clp.topMargin,child.getMeasuredWidth()+parentPaddingLeft+clp.leftMargin,child.getMeasuredHeight()+mutilHeight+parentPaddingTop+clp.topMargin); //改变高度倍增值 mutilHeight+=child.getMeasuredHeight()+clp.topMargin+clp.bottomMargin; } } } 布局文件如下:

[html]view plain copy print ?<com.aigestudio.customviewdemo.views.CustomLayoutxmlns:android="/apk/res/android" android:layout_width="match_parent" android:layout_height="match_parent" android:background="#FF597210" android:orientation="vertical"> <com.aigestudio.customviewdemo.views.IconView android:id="@+id/main_pv" android:layout_width="wrap_content" android:layout_height="wrap_content" android:layout_marginBottom="10dp" android:layout_marginLeft="20dp" android:layout_marginRight="30dp" android:layout_marginTop="5dp"/> <Button android:layout_width="wrap_content" android:layout_height="wrap_content" android:layout_marginBottom="16dp" android:layout_marginLeft="2dp" android:layout_marginRight="8dp" android:layout_marginTop="4dp" android:text="AigeStudio"/> <TextView android:layout_width="wrap_content" android:layout_height="wrap_content" android:layout_marginBottom="28dp" android:layout_marginLeft="7dp" android:layout_marginRight="19dp" android:layout_marginTop="14dp" android:background="#FF166792" android:text="AigeStudio"/> </com.aigestudio.customviewdemo.views.CustomLayout> 运行效果如下:

~~~~~~~~好了好了、不讲了,View的基本测量过程大致就是这样,如我所说测量并不是定式的过程,总会因控件而已,我们在自定义控件时要准确地测量,一定要准确,测量的结果会直接影响后面的布局定位、绘制甚至交互,所以马虎不得,你也可以看到Android给我们提供的LinearLayout、FrameLayout等布局都有极其严谨的测量逻辑,为的就是确保测量结果的准确。

本篇幅虽长,但是我们其实就讲了三点:

一个界面窗口的元素构成framework对View测量的控制处理View和ViewGroup的简单测量

好了、不说了、实在说不动了………………到此为止&¥……#¥……%#¥%#¥%#%¥哦!对了,文章开头我给各位设了一个问题,不知道大家发现没有,本来说这节顺带讲了,看着篇幅太长下节再说吧……

本内容不代表本网观点和政治立场,如有侵犯你的权益请联系我们处理。
网友评论
网友评论仅供其表达个人看法,并不表明网站立场。