自定义View(三)

onLayout

从源码看起:在performTraversals方法中首先调用了performMeasure,接下来便调用了performLayout。

performLayout(lp, mWidth, mHeight);```

在performLayout方法中调用了layout方法:

host.layout(0, 0, host.getMeasuredWidth(), host.getMeasuredHeight());```

host就是一个View对象,进入View源码,找到layout方法:

    public void layout(int l, int t, int r, int b) {
    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);
                }
            }
        }```

setFrame方法确定了子view在父view中的上下左右四个位置。在View里onLayou方法是一个空的实现。因为View的位置是由其父View决定的,所以onLayout方法应该在ViewGroup里实现。

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

可以看到,在ViewGroup方法里onLayout方法是一个抽象类,这是因为有各种不同的ViewGroup,比如LinearLayout,RelativeLayout等,layout规则不一样,所以需要具体不同的布局自己实现。这是LinearLayout的实现。

//伪代码
@Override
protected void onLayout(boolean changed, int l, int t, int r, int b) {
if (mOrientation == VERTICAL) {
layoutVertical(l, t, r, b);
} else {
layoutHorizontal(l, t, r, b);
}
}
void layoutVertical(int left, int top, int right, int bottom) {

    for (int i = 0; i < count; i++) {
        final View child = getVirtualChildAt(i);
        if (child == null) {
            childTop += measureNullChild(i);
        } else if (child.getVisibility() != GONE) {
            final int childWidth = child.getMeasuredWidth();
            final int childHeight = child.getMeasuredHeight();
            
            final LinearLayout.LayoutParams lp =
                    (LinearLayout.LayoutParams) child.getLayoutParams();
            
            childTop += lp.topMargin;
            setChildFrame(child, childLeft, childTop + getLocationOffset(child),
                    childWidth, childHeight);
            childTop += childHeight + lp.bottomMargin + getNextLocationOffset(child);
            i += getChildrenSkipCount(child, i);
        }
    }
}

private void setChildFrame(View child, int left, int top, int width, int height) {
child.layout(left, top, left + width, top + height);
}```
最后setChildFrame又调用view的layout方法。

实战

自定义一个ViewGroup

public class NewViewGroup extends ViewGroup {
    public NewViewGroup(Context context) {
        super(context);
    }

    public NewViewGroup(Context context, AttributeSet attrs) {
        super(context, attrs);
    }

    @Override
    protected void onMeasure(int widthMeasureSpec, int heightMeasureSpec) {
        super.onMeasure(widthMeasureSpec, heightMeasureSpec);
        measureChildren(widthMeasureSpec,heightMeasureSpec);
    }

    @Override
    protected void onLayout(boolean b, int i, int i1, int i2, int i3) {
        int childCount = getChildCount();
        int mTop = 0;
        for (int a=0;a<childCount;a++){
            View view = getChildAt(a);
            int height = view.getMeasuredHeight();
            int widht = view.getMeasuredWidth();
            view.layout(0,mleft,widht,height+mTop);
            mTop += height;
        }
    }
}

重写onMeasure,测量子View大小,否则不显示,在onLayout方法里遍历子view并为每一个view设置布局。布局里有三个button。显示结果如下:


截图

getMeasureWidth,getMeasureHeight与getWidth,getHeight的区别。

public final int getWidth() {  
    return mRight - mLeft;  
}
public final int getHeight() {  
    return mBottom - mTop;  
}
public final int getMeasuredWidth() {  
    return mMeasuredWidth;  
}
public final int getMeasuredHeight() {  
    return mMeasuredHeight;  
}```

getMeasureXXX和getXXX的区别在于,getMeasureXXX是在onMeasure之后确定的,而getXXX是在onLayout之后确定的。一般情况下的到的值是一样样的,但重写了layout方法,并修改了layout里的值的情况除外,比如:

//这里没有调用onLayout是因为在View中onLayout是一个空实现,关键代码在layout实现
@Override
public void layout(int l, int t, int r, int b) {
super.layout(l, t+10, r, b);
}```
这个时候getMeasureHeight和getHeight方法得到的数值不一样。

在Activity中获取view宽高时得到的数据为0

因为Activity的生命周期和view的创建周期不一致,在onCreate方法中调用getMeasureXXX或getXXX可能view还没有绘制完成。

解决方案:

  • onWindowFocusChanged
    
@Override
    public void onWindowFocusChanged(boolean hasFocus) {
        super.onWindowFocusChanged(hasFocus);
        if (hasFocus){
            Log.d("-----------",mNewView.getHeight()+"");
            Log.d("***********",mNewView.getMeasuredHeight()+"");
        }
    }```
* view.post()
    mNewView.post(new Runnable() {
        @Override
        public void run() {
            Log.d("-----------",mNewView.getHeight()+"");
            Log.d("***********",mNewView.getMeasuredHeight()+"");
        }
    });
* ViewTreeObserver
    ViewTreeObserver observer = mNewView.getViewTreeObserver();
    observer.addOnGlobalLayoutListener(new ViewTreeObserver.OnGlobalLayoutListener() {

        @RequiresApi(api = Build.VERSION_CODES.JELLY_BEAN)
        @Override
        public void onGlobalLayout() {

//只兼容api16以上的 mNewView.getViewTreeObserver().removeOnGlobalLayoutListener(this);
Log.d("-----------", mNewView.getHeight() + "");
Log.d("***********", mNewView.getMeasuredHeight() + "");
}
});

* view.measure

int widthMeasureSpec = View.MeasureSpec.makeMeasureSpec((1 << 30) - 1, View.MeasureSpec.AT_MOST);
int heightMeasureSpec = View.MeasureSpec.makeMeasureSpec((1 << 30) - 1, View.MeasureSpec.AT_MOST);
view.measure(widthMeasureSpec,heightMeasureSpec);

int width = view.getMeasuredWidth();
int height = view.getMeasuredHeight();

不能用于match_parent。
最后编辑于
©著作权归作者所有,转载或内容合作请联系作者
  • 序言:七十年代末,一起剥皮案震惊了整个滨河市,随后出现的几起案子,更是在滨河造成了极大的恐慌,老刑警刘岩,带你破解...
    沈念sama阅读 203,937评论 6 478
  • 序言:滨河连续发生了三起死亡事件,死亡现场离奇诡异,居然都是意外死亡,警方通过查阅死者的电脑和手机,发现死者居然都...
    沈念sama阅读 85,503评论 2 381
  • 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
    开封第一讲书人阅读 150,712评论 0 337
  • 文/不坏的土叔 我叫张陵,是天一观的道长。 经常有香客问我,道长,这世上最难降的妖魔是什么? 我笑而不...
    开封第一讲书人阅读 54,668评论 1 276
  • 正文 为了忘掉前任,我火速办了婚礼,结果婚礼上,老公的妹妹穿的比我还像新娘。我一直安慰自己,他们只是感情好,可当我...
    茶点故事阅读 63,677评论 5 366
  • 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
    开封第一讲书人阅读 48,601评论 1 281
  • 那天,我揣着相机与录音,去河边找鬼。 笑死,一个胖子当着我的面吹牛,可吹牛的内容都是我干的。 我是一名探鬼主播,决...
    沈念sama阅读 37,975评论 3 396
  • 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
    开封第一讲书人阅读 36,637评论 0 258
  • 序言:老挝万荣一对情侣失踪,失踪者是张志新(化名)和其女友刘颖,没想到半个月后,有当地人在树林里发现了一具尸体,经...
    沈念sama阅读 40,881评论 1 298
  • 正文 独居荒郊野岭守林人离奇死亡,尸身上长有42处带血的脓包…… 初始之章·张勋 以下内容为张勋视角 年9月15日...
    茶点故事阅读 35,621评论 2 321
  • 正文 我和宋清朗相恋三年,在试婚纱的时候发现自己被绿了。 大学时的朋友给我发了我未婚夫和他白月光在一起吃饭的照片。...
    茶点故事阅读 37,710评论 1 329
  • 序言:一个原本活蹦乱跳的男人离奇死亡,死状恐怖,灵堂内的尸体忽然破棺而出,到底是诈尸还是另有隐情,我是刑警宁泽,带...
    沈念sama阅读 33,387评论 4 319
  • 正文 年R本政府宣布,位于F岛的核电站,受9级特大地震影响,放射性物质发生泄漏。R本人自食恶果不足惜,却给世界环境...
    茶点故事阅读 38,971评论 3 307
  • 文/蒙蒙 一、第九天 我趴在偏房一处隐蔽的房顶上张望。 院中可真热闹,春花似锦、人声如沸。这庄子的主人今日做“春日...
    开封第一讲书人阅读 29,947评论 0 19
  • 文/苍兰香墨 我抬头看了看天上的太阳。三九已至,却和暖如春,着一层夹袄步出监牢的瞬间,已是汗流浃背。 一阵脚步声响...
    开封第一讲书人阅读 31,189评论 1 260
  • 我被黑心中介骗来泰国打工, 没想到刚下飞机就差点儿被人妖公主榨干…… 1. 我叫王不留,地道东北人。 一个月前我还...
    沈念sama阅读 44,805评论 2 349
  • 正文 我出身青楼,却偏偏与公主长得像,于是被迫代替她去往敌国和亲。 传闻我的和亲对象是个残疾皇子,可洞房花烛夜当晚...
    茶点故事阅读 42,449评论 2 342

推荐阅读更多精彩内容