當前位置:編程學習大全網 - 熱門推薦 - 什麽時候調用onMeasure方法 Android的onMeasure方法

什麽時候調用onMeasure方法 Android的onMeasure方法

妳好!

在開發中,當Android原生控件不能滿足我們的需求的時候,就需要自定義View。View在屏幕上繪制出來先要經過measure(計算)和layout(布局)。

什麽時候調用onMeasure方法?

當子View的父控件要放置該View的時候,父控件會傳遞兩個參數給View——widthMeasureSpec和heightMeasureSpec。這兩個參數是View可以獲取的寬高尺寸和模式 混合的int數據。可以通過int mode = MeasureSpec.getMode(widthMeasureSpec)得到模式,用int size = MeasureSpec.getSize(widthMeasureSpec)得到尺寸。

mode***有三種情況,取 分別為

MeasureSpec.UNSPECIFIED,MeasureSpec.EXACTLY,MeasureSpec.AT_MOST。

MeasureSpec.EXACTLY是精確尺寸,當我們將控件的layout_width或layout_height指定為具體數 時如

andorid:layout_width="50dip",或者為FILL_PARENT是,都是控件大小已經確定的情況,都是精確尺寸。

MeasureSpec.AT_MOST是最大尺寸,當控件的layout_width或layout_height指定為WRAP_CONTENT時,控件大小壹般隨著控件的子空間或內容進行變化,此時控件尺寸只要不超過父控件允許的最大尺寸即可。因此,此時的mode是AT_MOST,size給出了父控件允許的最大尺寸。

MeasureSpec.UNSPECIFIED是未指定尺寸,這種情況不多,壹般都是父控件是AdapterView,通過measure方法傳入的模式。

可以調用setMeasuredDimenson方法,將View的高度和寬度傳入,設置子View實際的大小,告訴父控件需要多大的空間放置子View。

以下是框架中View的onMeasure的典型實現:

@Override

protected void onMeasure(int widthMeasureSpec, int heightMeasureSpec) {

int measuredHeight = measureHeight(heightMeasureSpec);

int measuredWidth = measureWidth(widthMeasureSpec);

setMeasuredDimension(measuredHeight, measuredWidth);

private int measureHeight(int measureSpec) {

int specMode = MeasureSpec.getMode(measureSpec);

int specSize = MeasureSpec.getSize(measureSpec);

// Default size if no limits are specified.

int result = 500;

if (specMode == MeasureSpec.AT_MOST) {

// Calculate the ideal size of your

// control within this maximum size.

// If your control fills the available

// space return the outer bound.

result = specSize;

} else if (specMode == MeasureSpec.EXACTLY) {

// If your control can fit within these bounds return that

// value.

result = specSize;

return result;

private int measureWidth(int measureSpec) {

int specMode = MeasureSpec.getMode(measureSpec);

int specSize = MeasureSpec.getSize(measureSpec);

// Default size if no limits are specified.

int result = 500;

if (specMode == MeasureSpec.AT_MOST) {

// Calculate the ideal size of your control

// within this maximum size.

// If your control fills the available space

// return the outer bound.

result = specSize;

else if (specMode == MeasureSpec.EXACTLY) {

// If your control can fit within these bounds return that

// value.

result = specSize;

return result;

}

  • 上一篇:再見雷普利小姐的角色介紹
  • 下一篇:肚子和胃怎麽區分?
  • copyright 2024編程學習大全網