自定義控件

image.png

自己的一點理解:

其實measureSpec就是view的一個內(nèi)部類似踱,封裝了這個view對象的Mode和Size分别,封裝在一個Int類型中捶码,4字節(jié)*8位=32位,前2位封裝的mode豁鲤,后30位封裝的size

image.png

推薦的兩篇博客地址:


先說下結(jié)論秽誊,onMeasure是測量viewviewGroup時系統(tǒng)調(diào)用的,它的參數(shù)widthMeasureSpecheightMeasureSpec既不代表父ViewGroup的寬高也不代表子View的寬高琳骡,它表示了父ViewGroup對自己的期望锅论,至于子View實際的寬高得看setMeasuredDimension傳的是什么。

class MyView:View {
    constructor(context: Context,attrs:AttributeSet):super(context,attrs){}
    constructor(context: Context):super(context){}


    override fun onMeasure(widthMeasureSpec: Int, heightMeasureSpec: Int) {
        super.onMeasure(widthMeasureSpec, heightMeasureSpec)
        var myWidth = 0
        var myHeight = 0
        var defaultValue = 50

        var widthMode = MeasureSpec.getMode(widthMeasureSpec)
        var heightMode = MeasureSpec.getMode(heightMeasureSpec)
        var widthSize = MeasureSpec.getSize(widthMeasureSpec)
        var heightSize = MeasureSpec.getSize(heightMeasureSpec)
        //如果兩個的模式同時為EXACTlY
        if (widthMode == MeasureSpec.EXACTLY && heightMode == MeasureSpec.EXACTLY) {
            myHeight = heightSize
            myWidth = widthSize
        } else {
            //如果有一個模式為 AT_MOST
            myWidth = defaultValue
            myHeight = defaultValue
        }
        setMeasuredDimension(myWidth, myHeight)
    }
}
  • 有一個為AT_MOST的時候


    image.png
  • 同時為EXACTLY得時候


    image.png

  • 自定義ViewGroup時楣号,什么時候使用child.measure什么時候使用measureChild

  • 使用child.measure
    當不想使用xml中給出的值的時候或者說子View或者子ViewGroup(統(tǒng)稱子控件)的大小需要自己寫出最易、控制的時候。比如我想自己設(shè)置
    子控件寬為:childWidth --- 模式為:EXACLTLY炫狱,
    子控件高為:childHeight --- 模式為:EXACTLY
        var childWidthSpec = MeasureSpec.makeMeasureSpec(childWidth,MeasureSpec.EXACTLY)
        var childHeightSpec = MeasureSpec.makeMeasureSpec(childHeight,MeasureSpec.EXACTLY)

自己make子控件的measureSpec藻懒,然后調(diào)用child的measure方法設(shè)置子控件的實際大小child.measure(childWidthSpec,childHeightSpec)


  • 使用measureChild
    當xml文件中已經(jīng)指定了子控件的大小,并且我就像按照這個大小模式來設(shè)置我的子控件的實際大小measureChild(child, widthMeasureSpec, heightMeasureSpec)
    第一個參數(shù)是哪一個子控件视译,后面兩個參數(shù)是父控件的寬高測量建議嬉荆。
    源碼
 protected void measureChild(View child, int parentWidthMeasureSpec,
            int parentHeightMeasureSpec) {
        final LayoutParams lp = child.getLayoutParams();

        final int childWidthMeasureSpec = getChildMeasureSpec(parentWidthMeasureSpec,
                mPaddingLeft + mPaddingRight, lp.width);
        final int childHeightMeasureSpec = getChildMeasureSpec(parentHeightMeasureSpec,
                mPaddingTop + mPaddingBottom, lp.height);

        child.measure(childWidthMeasureSpec, childHeightMeasureSpec);
    }

而其中的getChildMeasureSpec()源碼如下:

 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);
    }
  • 調(diào)用measureChild方式實際上就是根據(jù)父容器的大小和模式以及自己的布局參數(shù)來確定子控件的measureSpec

  • 而調(diào)用child.meaure實際上就是不想依據(jù)系統(tǒng)默認的方式來確定子控件的measureSpec,而是自己根據(jù)自己的實際需求來手動調(diào)用measure.makeMeasureSpec()來確定子控件的measureSpec

由于時間倉促酷含,很多東西只是泛泛而談鄙早,有時間會將這些內(nèi)容整理一遍

?著作權(quán)歸作者所有,轉(zhuǎn)載或內(nèi)容合作請聯(lián)系作者
  • 序言:七十年代末,一起剝皮案震驚了整個濱河市椅亚,隨后出現(xiàn)的幾起案子限番,更是在濱河造成了極大的恐慌,老刑警劉巖呀舔,帶你破解...
    沈念sama閱讀 206,214評論 6 481
  • 序言:濱河連續(xù)發(fā)生了三起死亡事件弥虐,死亡現(xiàn)場離奇詭異,居然都是意外死亡,警方通過查閱死者的電腦和手機霜瘪,發(fā)現(xiàn)死者居然都...
    沈念sama閱讀 88,307評論 2 382
  • 文/潘曉璐 我一進店門珠插,熙熙樓的掌柜王于貴愁眉苦臉地迎上來,“玉大人粥庄,你說我怎么就攤上這事丧失〔蚣耍” “怎么了惜互?”我有些...
    開封第一講書人閱讀 152,543評論 0 341
  • 文/不壞的土叔 我叫張陵,是天一觀的道長琳拭。 經(jīng)常有香客問我训堆,道長,這世上最難降的妖魔是什么白嘁? 我笑而不...
    開封第一講書人閱讀 55,221評論 1 279
  • 正文 為了忘掉前任坑鱼,我火速辦了婚禮,結(jié)果婚禮上絮缅,老公的妹妹穿的比我還像新娘鲁沥。我一直安慰自己,他們只是感情好耕魄,可當我...
    茶點故事閱讀 64,224評論 5 371
  • 文/花漫 我一把揭開白布画恰。 她就那樣靜靜地躺著,像睡著了一般吸奴。 火紅的嫁衣襯著肌膚如雪允扇。 梳的紋絲不亂的頭發(fā)上,一...
    開封第一講書人閱讀 49,007評論 1 284
  • 那天则奥,我揣著相機與錄音考润,去河邊找鬼。 笑死读处,一個胖子當著我的面吹牛糊治,可吹牛的內(nèi)容都是我干的。 我是一名探鬼主播罚舱,決...
    沈念sama閱讀 38,313評論 3 399
  • 文/蒼蘭香墨 我猛地睜開眼井辜,長吁一口氣:“原來是場噩夢啊……” “哼!你這毒婦竟也來了馆匿?” 一聲冷哼從身側(cè)響起抑胎,我...
    開封第一講書人閱讀 36,956評論 0 259
  • 序言:老撾萬榮一對情侶失蹤,失蹤者是張志新(化名)和其女友劉穎渐北,沒想到半個月后阿逃,有當?shù)厝嗽跇淞掷锇l(fā)現(xiàn)了一具尸體,經(jīng)...
    沈念sama閱讀 43,441評論 1 300
  • 正文 獨居荒郊野嶺守林人離奇死亡,尸身上長有42處帶血的膿包…… 初始之章·張勛 以下內(nèi)容為張勛視角 年9月15日...
    茶點故事閱讀 35,925評論 2 323
  • 正文 我和宋清朗相戀三年恃锉,在試婚紗的時候發(fā)現(xiàn)自己被綠了搀菩。 大學時的朋友給我發(fā)了我未婚夫和他白月光在一起吃飯的照片。...
    茶點故事閱讀 38,018評論 1 333
  • 序言:一個原本活蹦亂跳的男人離奇死亡破托,死狀恐怖肪跋,靈堂內(nèi)的尸體忽然破棺而出,到底是詐尸還是另有隱情土砂,我是刑警寧澤州既,帶...
    沈念sama閱讀 33,685評論 4 322
  • 正文 年R本政府宣布,位于F島的核電站萝映,受9級特大地震影響吴叶,放射性物質(zhì)發(fā)生泄漏。R本人自食惡果不足惜序臂,卻給世界環(huán)境...
    茶點故事閱讀 39,234評論 3 307
  • 文/蒙蒙 一蚌卤、第九天 我趴在偏房一處隱蔽的房頂上張望。 院中可真熱鬧奥秆,春花似錦逊彭、人聲如沸。這莊子的主人今日做“春日...
    開封第一講書人閱讀 30,240評論 0 19
  • 文/蒼蘭香墨 我抬頭看了看天上的太陽。三九已至鲫咽,卻和暖如春签赃,著一層夾襖步出監(jiān)牢的瞬間,已是汗流浹背分尸。 一陣腳步聲響...
    開封第一講書人閱讀 31,464評論 1 261
  • 我被黑心中介騙來泰國打工锦聊, 沒想到剛下飛機就差點兒被人妖公主榨干…… 1. 我叫王不留,地道東北人箩绍。 一個月前我還...
    沈念sama閱讀 45,467評論 2 352
  • 正文 我出身青樓孔庭,卻偏偏與公主長得像,于是被迫代替她去往敵國和親材蛛。 傳聞我的和親對象是個殘疾皇子圆到,可洞房花燭夜當晚...
    茶點故事閱讀 42,762評論 2 345