對wrap_content的深入理解

以LinearLayout為例瘦麸,子View是一個自定義View壕探。這樣可以在onMeasure方法
重寫打印日志便于分析

如果LinearLayout是第一層View切揭,并且填滿屏幕;
在LinearLayout中,onMeasure接收的參數(shù)就是exactly模式伪煤;
具體分析如下:

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

高度參數(shù)heightMeasureSpec:
32位整數(shù)
前2位:模式,有三種情況{UNSPECIFIED, EXACTLY, AT_MOST}
后30位:具體大小
這樣1個int值可以用于2種用途;
工具類代碼如下:
int specMode = MeasureSpec.getMode(spec);
int specSize = MeasureSpec.getSize(spec);
其實就是位運算:

public static int getMode(int measureSpec) {
            //noinspection ResourceType
            return (measureSpec & MODE_MASK);
        }

跟蹤LinearLayout.onMeasure

protected void onMeasure(int widthMeasureSpec, int heightMeasureSpec) {
        if (mOrientation == VERTICAL) {
            measureVertical(widthMeasureSpec, heightMeasureSpec);
        } else {
            measureHorizontal(widthMeasureSpec, heightMeasureSpec);
        }
    }
     measureVertical() {
        for (int i = 0; i < count; ++i) {
            final LayoutParams lp = (LayoutParams) child.getLayoutParams();
measureChildBeforeLayout(child, i, widthMeasureSpec, 0,
                        heightMeasureSpec, usedHeight);
}
 void measureChildBeforeLayout(View child, int childIndex,
            int widthMeasureSpec, int totalWidth, int heightMeasureSpec,
            int totalHeight) {

        measureChildWithMargins(child, widthMeasureSpec, totalWidth,
                heightMeasureSpec, totalHeight);
    }

大致就是依次對每一個子View測量
對于measureChildWithMargins
是ViewGroup的方法

protected void measureChildWithMargins(View child,
            int parentWidthMeasureSpec, int widthUsed,
            int parentHeightMeasureSpec, int heightUsed) {
        final MarginLayoutParams lp = (MarginLayoutParams) child.getLayoutParams();

        final int childWidthMeasureSpec = getChildMeasureSpec(parentWidthMeasureSpec,
                mPaddingLeft + mPaddingRight + lp.leftMargin + lp.rightMargin
                        + widthUsed, lp.width);
        final int childHeightMeasureSpec = getChildMeasureSpec(parentHeightMeasureSpec,
                mPaddingTop + mPaddingBottom + lp.topMargin + lp.bottomMargin
                        + heightUsed, lp.height);

        child.measure(childWidthMeasureSpec, childHeightMeasureSpec);
    }

這里父布局測量凛辣,需要把父親自己的模式和子控件的LayoutParam參數(shù)合并出來抱既,
結(jié)合三種父布局模式,算出子控件建議大小扁誓,建議模式防泵,然后調(diào)用child.measure

 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;

        case MeasureSpec.UNSPECIFIED:
            ...
            break;
        }
        return MeasureSpec.makeMeasureSpec(resultSize, resultMode);
    }

setMeasureDimension()就是設置當前view的大小

 private void setMeasuredDimensionRaw(int measuredWidth, int measuredHeight) {
        mMeasuredWidth = measuredWidth;
        mMeasuredHeight = measuredHeight;

        mPrivateFlags |= PFLAG_MEASURED_DIMENSION_SET;
    }

當然不重寫則是默認配置:

protected void onMeasure(int widthMeasureSpec, int heightMeasureSpec) {
        setMeasuredDimension(getDefaultSize(getSuggestedMinimumWidth(), widthMeasureSpec),
                getDefaultSize(getSuggestedMinimumHeight(), heightMeasureSpec));
    }

默認測量規(guī)則如下:也是根據(jù)模式來的,當然也有一個最小值蝗敢,具體分析一下吧

public static int getDefaultSize(int size, int measureSpec) {
        int result = size;
        int specMode = MeasureSpec.getMode(measureSpec);
        int specSize = MeasureSpec.getSize(measureSpec);

        switch (specMode) {
        case MeasureSpec.UNSPECIFIED:
            result = size;
            break;
        case MeasureSpec.AT_MOST:
        case MeasureSpec.EXACTLY:
            result = specSize;
            break;
        }
        return result;
    }

總結(jié):父布局測量的時候捷泞,會有參數(shù)寬和參數(shù)高,依次
對子view測量寿谴,如果調(diào)用measureChildWithMargin,則根據(jù)自己本身的
和子控件的LayoutParam參數(shù)共同來算出子控件的建議高度锁右,寬度同理;
具體分析,如果一個matchParent的linearlayout里面有一個wrapcontent的子view
本身在linearlayout測量是Exactly則Exactly+wrapcontent=AT_MOST+父布局高度
所以這時候子控件不重寫測量方法高度默認就是和父布局一樣大小

?著作權歸作者所有,轉(zhuǎn)載或內(nèi)容合作請聯(lián)系作者
  • 序言:七十年代末咏瑟,一起剝皮案震驚了整個濱河市拂到,隨后出現(xiàn)的幾起案子,更是在濱河造成了極大的恐慌码泞,老刑警劉巖兄旬,帶你破解...
    沈念sama閱讀 206,311評論 6 481
  • 序言:濱河連續(xù)發(fā)生了三起死亡事件,死亡現(xiàn)場離奇詭異余寥,居然都是意外死亡领铐,警方通過查閱死者的電腦和手機,發(fā)現(xiàn)死者居然都...
    沈念sama閱讀 88,339評論 2 382
  • 文/潘曉璐 我一進店門宋舷,熙熙樓的掌柜王于貴愁眉苦臉地迎上來罐孝,“玉大人,你說我怎么就攤上這事肥缔×ぃ” “怎么了?”我有些...
    開封第一講書人閱讀 152,671評論 0 342
  • 文/不壞的土叔 我叫張陵续膳,是天一觀的道長改艇。 經(jīng)常有香客問我,道長坟岔,這世上最難降的妖魔是什么谒兄? 我笑而不...
    開封第一講書人閱讀 55,252評論 1 279
  • 正文 為了忘掉前任,我火速辦了婚禮社付,結(jié)果婚禮上承疲,老公的妹妹穿的比我還像新娘。我一直安慰自己鸥咖,他們只是感情好燕鸽,可當我...
    茶點故事閱讀 64,253評論 5 371
  • 文/花漫 我一把揭開白布。 她就那樣靜靜地躺著啼辣,像睡著了一般啊研。 火紅的嫁衣襯著肌膚如雪。 梳的紋絲不亂的頭發(fā)上鸥拧,一...
    開封第一講書人閱讀 49,031評論 1 285
  • 那天党远,我揣著相機與錄音,去河邊找鬼富弦。 笑死沟娱,一個胖子當著我的面吹牛,可吹牛的內(nèi)容都是我干的腕柜。 我是一名探鬼主播济似,決...
    沈念sama閱讀 38,340評論 3 399
  • 文/蒼蘭香墨 我猛地睜開眼矫废,長吁一口氣:“原來是場噩夢啊……” “哼!你這毒婦竟也來了碱屁?” 一聲冷哼從身側(cè)響起磷脯,我...
    開封第一講書人閱讀 36,973評論 0 259
  • 序言:老撾萬榮一對情侶失蹤,失蹤者是張志新(化名)和其女友劉穎娩脾,沒想到半個月后赵誓,有當?shù)厝嗽跇淞掷锇l(fā)現(xiàn)了一具尸體,經(jīng)...
    沈念sama閱讀 43,466評論 1 300
  • 正文 獨居荒郊野嶺守林人離奇死亡柿赊,尸身上長有42處帶血的膿包…… 初始之章·張勛 以下內(nèi)容為張勛視角 年9月15日...
    茶點故事閱讀 35,937評論 2 323
  • 正文 我和宋清朗相戀三年俩功,在試婚紗的時候發(fā)現(xiàn)自己被綠了。 大學時的朋友給我發(fā)了我未婚夫和他白月光在一起吃飯的照片碰声。...
    茶點故事閱讀 38,039評論 1 333
  • 序言:一個原本活蹦亂跳的男人離奇死亡诡蜓,死狀恐怖,靈堂內(nèi)的尸體忽然破棺而出胰挑,到底是詐尸還是另有隱情蔓罚,我是刑警寧澤,帶...
    沈念sama閱讀 33,701評論 4 323
  • 正文 年R本政府宣布瞻颂,位于F島的核電站豺谈,受9級特大地震影響,放射性物質(zhì)發(fā)生泄漏贡这。R本人自食惡果不足惜茬末,卻給世界環(huán)境...
    茶點故事閱讀 39,254評論 3 307
  • 文/蒙蒙 一、第九天 我趴在偏房一處隱蔽的房頂上張望盖矫。 院中可真熱鬧丽惭,春花似錦、人聲如沸辈双。這莊子的主人今日做“春日...
    開封第一講書人閱讀 30,259評論 0 19
  • 文/蒼蘭香墨 我抬頭看了看天上的太陽辐马。三九已至拷橘,卻和暖如春,著一層夾襖步出監(jiān)牢的瞬間喜爷,已是汗流浹背。 一陣腳步聲響...
    開封第一講書人閱讀 31,485評論 1 262
  • 我被黑心中介騙來泰國打工萄唇, 沒想到剛下飛機就差點兒被人妖公主榨干…… 1. 我叫王不留檩帐,地道東北人。 一個月前我還...
    沈念sama閱讀 45,497評論 2 354
  • 正文 我出身青樓另萤,卻偏偏與公主長得像湃密,于是被迫代替她去往敵國和親诅挑。 傳聞我的和親對象是個殘疾皇子,可洞房花燭夜當晚...
    茶點故事閱讀 42,786評論 2 345

推薦閱讀更多精彩內(nèi)容