繼承ViewGroup:重寫onMeasure方法和onLayout方法

來源:互聯網
上載者:User

在繼承ViewGroup類時,需要重寫兩個方法,分別是onMeasure和onLayout。

1,在方法onMeasure中調用setMeasuredDimension方法

void android.view.View.setMeasuredDimension(int measuredWidth, int measuredHeight)

在onMeasure(int, int)中,必須調用setMeasuredDimension(int width, int height)來儲存測量得到的寬度和高度值,如果沒有這麼去做會觸發異常IllegalStateException。

2,在方法onMeasure中調用孩子的measure方法

void android.view.View.measure(int widthMeasureSpec, int heightMeasureSpec)

這個方法用來測量出view的大小。父view使用width參數和height參數來提供constraint資訊。實際上,view的測量工作在onMeasure(int, int)方法中完成。因此,只有onMeasure(int, int)方法可以且必須被重寫。參數widthMeasureSpec提供view的水平空間的規格說明,參數heightMeasureSpec提供view的垂直空間的規格說明。

3,解析onMeasure(int, int)方法

void android.view.View.onMeasure(int widthMeasureSpec, int heightMeasureSpec)

測量view及其內容來確定view的寬度和高度。這個方法在measure(int, int)中被調用,必須被重寫來精確和有效測量view的內容。

在重寫這個方法時,必須調用setMeasuredDimension(int, int)來儲存測量得到的寬度和高度值。執行失敗會觸發一個IllegalStateException異常。調用父view的onMeasure(int, int)是合法有效用法。

view的基本測量資料預設取其背景尺寸,除非允許更大的尺寸。子view必須重寫onMeasure(int, int)來提供其內容更加準確的測量數值。如果被重寫,子類確保測量的height和width至少是view的最小高度和寬度(通過getSuggestedMinimumHeight()和getSuggestedMinimumWidth()擷取)。

4,解析onLayout(boolean, int, int, int, int)方法

void android.view.ViewGroup.onLayout(boolean changed, int l, int t, int r, int b)

調用情境:在view給其孩子設定尺寸和位置時被調用。子view,包括孩子在內,必須重寫onLayout(boolean, int, int, int, int)方法,並且調用各自的layout(int, int, int, int)方法。

參數說明:參數changed表示view有新的尺寸或位置;參數l表示相對於父view的Left位置;參數t表示相對於父view的Top位置;參數r表示相對於父view的Right位置;參數b表示相對於父view的Bottom位置。.

5,解析View.MeasureSpec類

android.view.View.MeasureSpec

MeasureSpec對象,封裝了layout規格說明,並且從父view傳遞給子view。每個MeasureSpec對象代表了width或height的規格。

MeasureSpec對象包含一個size和一個mode,其中mode可以取以下三個數值之一:

  • UNSPECIFIED,1073741824 [0x40000000],未加規定的,表示沒有給子view添加任何規定。
  • EXACTLY,0 [0x0],精確的,表示父view為子view確定精確的尺寸。
  • AT_MOST,-2147483648 [0x80000000],子view可以在指定的尺寸內盡量大。

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在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.