1. 程式人生 > >Android自定義view知識-view的測量模式

Android自定義view知識-view的測量模式

int widthMode = MeasureSpec.getMode(widthMeasureSpec);
int heightMode = MeasureSpec.getMode(heightMeasureSpec);
// 如果 widthMode == MeasureSpec.AT_MOST : 說明在佈局中指定了是 wrap_content
// 如果 widthMode == MeasureSpec.EXACTLY : 說明在佈局中指定了確切的值,如100dp 或 match_parent
// 如果 widthMode == MeasureSpec.UNSPECIFIED : 儘可能的大,一般很少能用到,
// ListView,ScrollView 在測量子佈局的時候會用到 MeasureSpec.UNSPECIFIED

// widthMeasureSpec/heightMeasureSpec 會包含兩個資訊,第一個資訊是模式:2位,第二個資訊是寬度或高度:30位