快速瞭解Android onMeasure() onLayout()

來源:互聯網
上載者:User

標籤:android   onmeasure   onlayout   

通過重寫ViewGroup學習onMeasure() onLayout()方法

@Override

protected void onMeasure(int widthMeasureSpec, int heightMeasureSpec) {
   //擷取模式和大小,邊界參數共有3種模式:UNSPECIFIED一般為0, EXACTLY準確尺寸, AT_MOST自適應尺寸  
int w_mode = MeasureSpec.getMode(widthMeasureSpec);
int w_size = MeasureSpec.getSize(widthMeasureSpec);
int h_mode = MeasureSpec.getMode(heightMeasureSpec);
int h_size = MeasureSpec.getSize(heightMeasureSpec);
//計算自訂的所有子控制項的大小  
 measureChildren(widthMeasureSpec, heightMeasureSpec);
//通知父控制項,寬高需要多大地方放置子控制項
//setMeasuredDimension(resolveSize(size, widthMeasureSpec),resolveSize(size, heightMeasureSpec));
setMeasuredDimension(w_size, h_size);
Log.e("onMeasure","寬mode=" + w_mode + "寬size="+ w_size
+ "高mode=" + h_mode+ "高size=" +h_size);
// super.onMeasure(widthMeasureSpec,heightMeasureSpec);

}


//onLayout是為了指定視圖的顯示位置,方法執行的前後順序是在onMeasure之後,因為視圖肯定是只有知道大小才能指定位置放置
@Override  
    protected void onLayout(boolean changed, int l, int t, int r, int b) {  
        // 記錄總高度  
        int mTotalHeight = 0;  
        // 遍曆所有子視圖  
        int childCount = getChildCount();  
        for (int i = 0; i < childCount; i++) {  
            View childView = getChildAt(i);  
            // 擷取在onMeasure中計算的視圖尺寸  
            int measureHeight = childView.getMeasuredHeight();  
            int measuredWidth = childView.getMeasuredWidth();  
  
            childView.layout(l, mTotalHeight, measuredWidth, mTotalHeight   + measureHeight);  
            mTotalHeight += measureHeight;  
        }  
    }

快速瞭解Android onMeasure() onLayout()

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.