Android Measure 測量過程

參考:Android開發(fā)藝術(shù)探索一書

MeasureSpec##

MeasureSpec 由view自身的layoutparams(xml 中指定) 和 父容器的約束(父容器大小)來 共同生成优妙;

MeasureSpec 與測量相關(guān)的類乘综,是一個(gè)32位的int值,其中高2位表示SpecMode套硼,低30位表示SpecSize;
SpecMode 是測量模式卡辰,SpecSize指在某種測量模式下的大小邪意;
SpecMode有3種:

  1. UNSPECIFIED:未指定狀態(tài)九妈;
  2. EXACTLY:表示精確大小,LayoutParams中的 match_parent 與具體數(shù)值就是這個(gè)雾鬼;
  3. AL_MOST: 至多萌朱,父容器指定了一個(gè)可用大小的SpecSize,view 的大小不能大于這個(gè) SpecSize策菜,
    LayoutParams 中wrap_content與之對應(yīng)晶疼;

LayoutParams##

給View設(shè)置LayoutParams,view的LayoutParams會(huì)在父容器的約束下又憨,轉(zhuǎn)換成對應(yīng)的MeasureSpec翠霍,然后再跟進(jìn)此MeasureSpec來確定View的寬高;
注意: MeasureSpec不是唯一由LayoutParams決定的蠢莺,View 的 LayoutParams與其父容器一起決定出來View的MeasureSpec寒匙;

DecorView
DecorView是頂層父容器,她的MeasureSpec創(chuàng)建時(shí)根據(jù)屏幕大小來的;

規(guī)則:

  1. 當(dāng)View采用固定寬浪秘、高時(shí)蒋情,不管父容器的 MeasureSpec 是什么,View的MeasureSpec都是精確模式(EXACTLY)耸携,并且其大小遵循 LayoutParams 設(shè)置的大锌醚ⅰ;
  2. 當(dāng)View的寬高為match_parent時(shí)夺衍,如果父容器是精準(zhǔn)模式狈谊,則View也是精準(zhǔn)模式,并且大小是父容器的剩余空間(父容器可能有 margin)沟沙,如果父容器是最大模式河劝,則View也是最大模式,大小不超過父容器的剩余空間矛紫;
  3. 當(dāng)View的寬高wrap_content,不管父容器的模式是啥赎瞎,View的模式總是最大化并且大小不超過父(這里指的是自定義view,繼承view颊咬,沒有重寫onMeasure方法的情況务甥;TextView 等系統(tǒng)控件有具體的onMeasure實(shí)現(xiàn));

View measure的過程##

先從 ViewGroup類中的measureChildWithMargins方法入手:

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);
    }

從上面的代碼可以看到 測量 子 view 的時(shí)候喳篇,會(huì)先調(diào)用 getChildMeasureSpec方法來獲得子view的MeasureSpec敞临;子View的MeasureSpec明顯與父容器有關(guān);

getChildMeasureSpec方法代碼如下:

/**
 * @param spec: 父容器的 MeasureSpec
 * @param padding:父容器已占用的空間大小麸澜,意思是子view布局大小時(shí)挺尿,需要減去這部分空間
  @param childDimension: 子View的LayoutParams 設(shè)置的大小
***/
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;

        // Parent asked to see how big we want to be
        case MeasureSpec.UNSPECIFIED:
            if (childDimension >= 0) {
                // Child wants a specific size... let him have it
                resultSize = childDimension;
                resultMode = MeasureSpec.EXACTLY;
            } else if (childDimension == LayoutParams.MATCH_PARENT) {
                // Child wants to be our size... find out how big it should
                // be
                resultSize = View.sUseZeroUnspecifiedMeasureSpec ? 0 : size;
                resultMode = MeasureSpec.UNSPECIFIED;
            } else if (childDimension == LayoutParams.WRAP_CONTENT) {
                // Child wants to determine its own size.... find out how
                // big it should be
                resultSize = View.sUseZeroUnspecifiedMeasureSpec ? 0 : size;
                resultMode = MeasureSpec.UNSPECIFIED;
            }
            break;
        }
        //noinspection ResourceType
        return MeasureSpec.makeMeasureSpec(resultSize, resultMode);
    }

如果原始View是一個(gè)view炊邦,通過measure方法就完成了其測量過程编矾,如果是ViewGroup,除了完成自己的測量過程铣耘,還要負(fù)責(zé)調(diào)用所有子元素的measure方法洽沟,子元素在遞歸執(zhí)行;

View的measure過程來measure方法來完成蜗细,measure方法會(huì)調(diào)用View的onMeasure方法:

   /**
    * @param widthMeasureSpec 父容器寬 MeasureSpec
   **/
    protected void onMeasure(int widthMeasureSpec, int heightMeasureSpec) {
        // 設(shè)置測量后的寬高 setMeasureDimension()
        setMeasuredDimension(getDefaultSize(getSuggestedMinimumWidth(), widthMeasureSpec),
                getDefaultSize(getSuggestedMinimumHeight(), heightMeasureSpec));
    }
  
   // 返回 MeasureSpec的 specSize裆操, UNSPECIFIED 模式時(shí),大小為 getSuggestedMinimumWidth()
    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;
    }

   // 獲取最小寬度炉媒,最小寬度 為 minWidth屬性 對應(yīng) android:minWidth踪区,或者 background 背景的寬
    protected int getSuggestedMinimumWidth() {
        return (mBackground == null) ? mMinWidth : max(mMinWidth, mBackground.getMinimumWidth());
    }

View measure 調(diào)用嵌套圖,最先執(zhí)行 getSuggestedMinXXX吊骤,逐步往上走

image.png

ViewGroup measure 過程
Viewgroup 沒有重寫 View 的 onMeasure方法缎岗,但提供了 measureChildren 方法,
如果 孩子 不是 GONE,則分別用 measureChild來測量孩子白粉;

 protected void measureChildren(int widthMeasureSpec, int heightMeasureSpec) {
        final int size = mChildrenCount;
        final View[] children = mChildren;
        for (int i = 0; i < size; ++i) {
            final View child = children[i];
            if ((child.mViewFlags & VISIBILITY_MASK) != GONE) {
                measureChild(child, widthMeasureSpec, heightMeasureSpec);
            }
        }
    }

 protected void measureChild(View child, int parentWidthMeasureSpec,
            int parentHeightMeasureSpec) {
        final LayoutParams lp = child.getLayoutParams();

        // 獲取子View的 MeasureSpec
        final int childWidthMeasureSpec = getChildMeasureSpec(parentWidthMeasureSpec,
                mPaddingLeft + mPaddingRight, lp.width);
        final int childHeightMeasureSpec = getChildMeasureSpec(parentHeightMeasureSpec,
                mPaddingTop + mPaddingBottom, lp.height);
       // 調(diào)用view的measure方法來測量传泊,這里鼠渺,就會(huì)走 上面的 view 的 measure了
        child.measure(childWidthMeasureSpec, childHeightMeasureSpec);
    }

因?yàn)閂iewGroup是抽象類,其測量過程由子類實(shí)現(xiàn)眷细,如:LinearLayout
View的measure過程是比較復(fù)雜的拦盹,通過 measure后,就可以通過getMeasureHeight() getMeasureWidth 獲取測量后的高寬了溪椎;但最終的寬高是在 onLayout方法中取獲取普舆,因?yàn)橄到y(tǒng) 可能多次調(diào)用 measure過程;

最后編輯于
?著作權(quán)歸作者所有,轉(zhuǎn)載或內(nèi)容合作請聯(lián)系作者
  • 序言:七十年代末校读,一起剝皮案震驚了整個(gè)濱河市沼侣,隨后出現(xiàn)的幾起案子,更是在濱河造成了極大的恐慌歉秫,老刑警劉巖蛾洛,帶你破解...
    沈念sama閱讀 212,816評論 6 492
  • 序言:濱河連續(xù)發(fā)生了三起死亡事件,死亡現(xiàn)場離奇詭異端考,居然都是意外死亡雅潭,警方通過查閱死者的電腦和手機(jī),發(fā)現(xiàn)死者居然都...
    沈念sama閱讀 90,729評論 3 385
  • 文/潘曉璐 我一進(jìn)店門却特,熙熙樓的掌柜王于貴愁眉苦臉地迎上來扶供,“玉大人,你說我怎么就攤上這事裂明〈慌ǎ” “怎么了?”我有些...
    開封第一講書人閱讀 158,300評論 0 348
  • 文/不壞的土叔 我叫張陵闽晦,是天一觀的道長扳碍。 經(jīng)常有香客問我,道長仙蛉,這世上最難降的妖魔是什么笋敞? 我笑而不...
    開封第一講書人閱讀 56,780評論 1 285
  • 正文 為了忘掉前任,我火速辦了婚禮荠瘪,結(jié)果婚禮上夯巷,老公的妹妹穿的比我還像新娘。我一直安慰自己哀墓,他們只是感情好趁餐,可當(dāng)我...
    茶點(diǎn)故事閱讀 65,890評論 6 385
  • 文/花漫 我一把揭開白布。 她就那樣靜靜地躺著篮绰,像睡著了一般后雷。 火紅的嫁衣襯著肌膚如雪。 梳的紋絲不亂的頭發(fā)上,一...
    開封第一講書人閱讀 50,084評論 1 291
  • 那天臀突,我揣著相機(jī)與錄音勉抓,去河邊找鬼。 笑死候学,一個(gè)胖子當(dāng)著我的面吹牛琳状,可吹牛的內(nèi)容都是我干的。 我是一名探鬼主播盒齿,決...
    沈念sama閱讀 39,151評論 3 410
  • 文/蒼蘭香墨 我猛地睜開眼,長吁一口氣:“原來是場噩夢啊……” “哼困食!你這毒婦竟也來了边翁?” 一聲冷哼從身側(cè)響起,我...
    開封第一講書人閱讀 37,912評論 0 268
  • 序言:老撾萬榮一對情侶失蹤硕盹,失蹤者是張志新(化名)和其女友劉穎符匾,沒想到半個(gè)月后,有當(dāng)?shù)厝嗽跇淞掷锇l(fā)現(xiàn)了一具尸體瘩例,經(jīng)...
    沈念sama閱讀 44,355評論 1 303
  • 正文 獨(dú)居荒郊野嶺守林人離奇死亡啊胶,尸身上長有42處帶血的膿包…… 初始之章·張勛 以下內(nèi)容為張勛視角 年9月15日...
    茶點(diǎn)故事閱讀 36,666評論 2 327
  • 正文 我和宋清朗相戀三年,在試婚紗的時(shí)候發(fā)現(xiàn)自己被綠了垛贤。 大學(xué)時(shí)的朋友給我發(fā)了我未婚夫和他白月光在一起吃飯的照片焰坪。...
    茶點(diǎn)故事閱讀 38,809評論 1 341
  • 序言:一個(gè)原本活蹦亂跳的男人離奇死亡,死狀恐怖聘惦,靈堂內(nèi)的尸體忽然破棺而出某饰,到底是詐尸還是另有隱情,我是刑警寧澤善绎,帶...
    沈念sama閱讀 34,504評論 4 334
  • 正文 年R本政府宣布黔漂,位于F島的核電站,受9級特大地震影響禀酱,放射性物質(zhì)發(fā)生泄漏炬守。R本人自食惡果不足惜,卻給世界環(huán)境...
    茶點(diǎn)故事閱讀 40,150評論 3 317
  • 文/蒙蒙 一剂跟、第九天 我趴在偏房一處隱蔽的房頂上張望减途。 院中可真熱鬧,春花似錦浩聋、人聲如沸观蜗。這莊子的主人今日做“春日...
    開封第一講書人閱讀 30,882評論 0 21
  • 文/蒼蘭香墨 我抬頭看了看天上的太陽墓捻。三九已至,卻和暖如春,著一層夾襖步出監(jiān)牢的瞬間砖第,已是汗流浹背撤卢。 一陣腳步聲響...
    開封第一講書人閱讀 32,121評論 1 267
  • 我被黑心中介騙來泰國打工, 沒想到剛下飛機(jī)就差點(diǎn)兒被人妖公主榨干…… 1. 我叫王不留梧兼,地道東北人放吩。 一個(gè)月前我還...
    沈念sama閱讀 46,628評論 2 362
  • 正文 我出身青樓,卻偏偏與公主長得像羽杰,于是被迫代替她去往敵國和親渡紫。 傳聞我的和親對象是個(gè)殘疾皇子,可洞房花燭夜當(dāng)晚...
    茶點(diǎn)故事閱讀 43,724評論 2 351

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