美文网首页安卓开发Android自定义View
Android视图绘制流程之onLayout()

Android视图绘制流程之onLayout()

作者: 天涯的尽头s风沙 | 来源:发表于2019-05-08 19:57 被阅读2次

    measure过程结束后,视图的大小就已经测量好了,接下来就是layout的过程了。

    正如其名字所描述的一样,这个方法是用于给视图进行布局的,也就是确定视图的位置

    ViewRoot的performTraversals()方法会在measure结束后继续执行,并调用View的layout()方法来执行此过程,如下所示:

    host.layout(0, 0, host.mMeasuredWidth, host.mMeasuredHeight);

    layout()方法接收四个参数,分别代表着左、上、右、下的坐标,当然这个坐标是相对于当前视图的父视图而言的。可以看到,这里还把刚才测量出的宽度和高度传到了layout()方法中。

    那么我们来看下layout()方法中的代码是什么样的吧,如下所示:

    public void layout(int l, int t, int r, int b) {
        int oldL = mLeft;
        int oldT = mTop;
        int oldB = mBottom;
        int oldR = mRight;
        boolean changed = setFrame(l, t, r, b);
        if (changed || (mPrivateFlags & LAYOUT_REQUIRED) == LAYOUT_REQUIRED) {
            if (ViewDebug.TRACE_HIERARCHY) {
                ViewDebug.trace(this, ViewDebug.HierarchyTraceType.ON_LAYOUT);
            }
            onLayout(changed, l, t, r, b);
            mPrivateFlags &= ~LAYOUT_REQUIRED;
            if (mOnLayoutChangeListeners != null) {
                ArrayList<OnLayoutChangeListener> listenersCopy =
                        (ArrayList<OnLayoutChangeListener>) 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 &= ~FORCE_LAYOUT;
    }
    

    在layout()方法中,首先会调用setFrame()方法来判断视图的大小是否发生过变化,以确定有没有必要对当前的视图进行重绘,同时还会在这里把传递过来的四个参数分别赋值给mLeftmTopmRightmBottom这几个变量。

    接下来调用onLayout()方法,正如onMeasure()方法中的默认行为一样,也许你已经迫不及待地想知道onLayout()方法中的默认行为是什么样的了。进入onLayout()方法,咦?怎么这是个空方法,一行代码都没有?!

    没错,View中的onLayout()方法就是一个空方法,因为onLayout()过程是为了确定视图在布局中所在的位置,而这个操作应该是由布局来完成的,即父视图决定子视图的显示位置。

    既然如此,我们来看下ViewGroup中的onLayout()方法是怎么写的吧,代码如下:

        @Override
        protected abstract void onLayout(boolean changed, int l, int t, int r, int b);
    
    

    可以看到,ViewGroup中的onLayout()方法竟然是一个抽象方法,这就意味着所有ViewGroup的子类都必须重写这个方法。没错,像LinearLayout、RelativeLayout等布局,都是重写了这个方法,然后在内部按照各自的规则对子视图进行布局的。

    由于LinearLayout和RelativeLayout的布局规则都比较复杂,就不单独拿出来进行分析了,这里我们尝试自定义一个布局,借此来更深刻地理解onLayout()的过程。

    自定义的这个布局目标很简单,只要能够包含一个子视图,并且让子视图正常显示出来就可以了。那么就给这个布局起名叫做SimpleLayout吧,代码如下所示:

    public class SimpleLayout extends ViewGroup {
     
        public SimpleLayout(Context context, AttributeSet attrs) {
            super(context, attrs);
        }
     
        @Override
        protected void onMeasure(int widthMeasureSpec, int heightMeasureSpec) {
            super.onMeasure(widthMeasureSpec, heightMeasureSpec);
            if (getChildCount() > 0) {
                View childView = getChildAt(0);
                measureChild(childView, widthMeasureSpec, heightMeasureSpec);
            }
        }
     
        @Override
        protected void onLayout(boolean changed, int l, int t, int r, int b) {
            if (getChildCount() > 0) {
                View childView = getChildAt(0);
                childView.layout(0, 0, childView.getMeasuredWidth(), childView.getMeasuredHeight());
            }
        }
    }
    

    代码非常的简单,我们来看下具体的逻辑吧。
    你已经知道,onMeasure()方法会在onLayout()方法之前调用,因此这里在onMeasure()方法中判断SimpleLayout中是否有包含一个子视图,如果有的话就调用measureChild()方法来测量出子视图的大小。

    接着在onLayout()方法中同样判断SimpleLayout是否有包含一个子视图,然后调用这个子视图的layout()方法来确定它在SimpleLayout布局中的位置,这里传入的四个参数依次是0、0、childView.getMeasuredWidth()和childView.getMeasuredHeight(),分别代表着子视图在SimpleLayout中左上右下四个点的坐标。其中,调用childView.getMeasuredWidth()和childView.getMeasuredHeight()方法得到的值就是在onMeasure()方法中测量出的宽和高。

    这样就已经把SimpleLayout这个布局定义好了,下面就是在XML文件中使用它了,如下所示:

    <com.example.viewtest.SimpleLayout xmlns:android="http://schemas.android.com/apk/res/android"
        android:layout_width="match_parent"
        android:layout_height="match_parent" >
        
        <ImageView 
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:src="@mipmap/ic_launcher"
            />
        
    </com.example.viewtest.SimpleLayout>
    

    可以看到,我们能够像使用普通的布局文件一样使用SimpleLayout,只是注意它只能包含一个子视图,多余的子视图会被舍弃掉。这里SimpleLayout中包含了一个ImageView,并且ImageView的宽高都是wrap_content。现在运行一下程序,结果如下图所示:


    Screenshot_2019-05-08-19-44-24-625_com.example.di.png

    OK!ImageView成功已经显示出来了,并且显示的位置也正是我们所期望的。如果你想改变ImageView显示的位置,只需要改变childView.layout()方法的四个参数就行了。

    onLayout()过程结束后,我们就可以调用getWidth()方法和getHeight()方法来获取视图的宽高了。
    说到这里,相信很多朋友长久以来都会有一个疑问,getWidth()方法和getMeasureWidth()方法到底有什么区别呢?
    它们的值好像永远都是相同的。
    其实它们的值之所以会相同基本都是因为布局设计者的编码习惯非常好,实际上它们之间的差别还是挺大的。

    首先getMeasureWidth()方法在measure()过程结束后就可以获取到了
    getWidth()方法要在layout()过程结束后才能获取到。

    另外,getMeasureWidth()方法中的值是通过setMeasuredDimension()方法来进行设置的
    getWidth()方法中的值则是通过视图右边的坐标减去左边的坐标计算出来的。

    观察SimpleLayout中onLayout()方法的代码
    这里给子视图的layout()方法传入的四个参数分别是00childView.getMeasuredWidth()childView.getMeasuredHeight()
    因此getWidth()方法得到的值就是childView.getMeasuredWidth() - 0 = childView.getMeasuredWidth() ,所以此时getWidth()方法和getMeasuredWidth() 得到的值就是相同的,但如果你将onLayout()方法中的代码进行如下修改:

    @Override
    protected void onLayout(boolean changed, int l, int t, int r, int b) {
        if (getChildCount() > 0) {
            View childView = getChildAt(0);
            childView.layout(0, 0, 200, 200);
        }
    }
    

    这样getWidth()方法得到的值就是200 - 0 = 200,不会再和getMeasuredWidth()的值相同了。当然这种做法充分不尊重measure()过程计算出的结果,通常情况下是不推荐这么写的。getHeight()与getMeasureHeight()方法之间的关系同上,就不再重复分析了。

    到此为止,我们把视图绘制流程的第二阶段也分析完了。

    Home:返回首页

    Previous:onMeasure()

    Next:onDraw()


    作者:guolin
    来源:CSDN
    原文:https://blog.csdn.net/guolin_blog/article/details/16330267
    版权声明:本文为博主原创文章,转载请附上博文链接!

    相关文章

      网友评论

        本文标题:Android视图绘制流程之onLayout()

        本文链接:https://www.haomeiwen.com/subject/oejvoqtx.html