關(guān)于自定義View,建議大家最好繼承自Android已經(jīng)實現(xiàn)過的View,比如ImageView和TextView损肛,這樣比較簡單,而且各種屬性都能生效荣瑟,比如match_parent和wrap_content等屬性治拿。
但是當(dāng)你開發(fā)的自定義View是繼承自View的話,那就需要考慮自己實現(xiàn)wrap_content屬性了笆焰,如果不自己實現(xiàn)的話劫谅,你的wrap_content和match_parent是一樣的效果。
關(guān)于wrap_content不生效的原因嚷掠,要從源碼來分析onMeasure的過程
假設(shè)布局文件
<?xml version="1.0" encoding="utf-8"?>
<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent">
<View
android:layout_width="match_parent"
android:layout_height="wrap_content"/> 高度是wrap_content捏检,但是卻填充了父容器
</FrameLayout>
android.view.View的測量源碼
protected void onMeasure(int widthMeasureSpec, int heightMeasureSpec) {
setMeasuredDimension(getDefaultSize(getSuggestedMinimumWidth(), widthMeasureSpec),
getDefaultSize(getSuggestedMinimumHeight(), heightMeasureSpec));
}
public static int getDefaultSize(int size, int measureSpec) {
int result = size;
int specMode = MeasureSpec.getMode(measureSpec);
int specSize = MeasureSpec.getSize(measureSpec);
switch (specMode) {
case MeasureSpec.UNSPECIFIED:
result = size;
break;
case MeasureSpec.AT_MOST:
case MeasureSpec.EXACTLY:
result = specSize; // 這里是問題的關(guān)鍵
break;
}
return result;
}
從上面的代碼可以看出,android.view.View在measure時不皆,F(xiàn)rameLayout會傳入MeasureSpec.AT_MOST(為什么會出入AT_MOST呢贯城,這里不做分析),但是View居然不關(guān)注自身的屬性霹娄,而是一律使用FrameLayout給的最大可用高度specSize能犯,這就導(dǎo)致了View填充FrameLayout的現(xiàn)象。
那再來看看一個TextView是如何measure的
<?xml version="1.0" encoding="utf-8"?>
<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent">
<TextView
android:layout_width="wrap_content" 寬度是wrap_content犬耻,此時寬度真的為0px
android:layout_height="match_parent"/>
</FrameLayout>
android.view.TextView的部分代碼
@Override
protected void onMeasure(int widthMeasureSpec, int heightMeasureSpec) {
......
if (widthMode == MeasureSpec.EXACTLY) {
// Parent has told us how big to be. So be it.
width = widthSize;
} else {
......
// 根據(jù)內(nèi)容計算出width
width = Math.max(width, getSuggestedMinimumWidth());
if (widthMode == MeasureSpec.AT_MOST) {
width = Math.min(widthSize, width); // 在AT_MOST的情況下踩晶,并不是直接使用最大specSize
}
}
......
繼承自View的wrap_content屬性的measure解決方案。
@Override
protected void onMeasure(int widthMeasureSpec, int heightMeasureSpec) {
ViewGroup.LayoutParams layoutParams = getLayoutParams();
int width = measureSelfWidthOrHeight(MeasureSpec.getMode(widthMeasureSpec),
MeasureSpec.getSize(widthMeasureSpec),
getPaddingLeft() + getPaddingRight(),
layoutParams.width, getSuggestedMinimumWidth());
int height = measureSelfWidthOrHeight(MeasureSpec.getMode(heightMeasureSpec),
MeasureSpec.getSize(heightMeasureSpec),
getPaddingTop() + getPaddingBottom(),
layoutParams.height, getSuggestedMinimumHeight());
setMeasuredDimension(width, height);
for (int i = 0; i < getChildCount(); i++) {
if (getChildAt(i).getVisibility() != GONE) {
getChildAt(i).measure(MeasureSpec.makeMeasureSpec(MeasureSpec.getSize(width), MeasureSpec.EXACTLY), MeasureSpec.makeMeasureSpec(MeasureSpec.getSize(height), MeasureSpec.EXACTLY));
}
}
}
private int measureSelfWidthOrHeight(int heightMode, int heightSize, int extraHeight, int layoutParamHeight, int suggestedMinHeight) {
int height = 0;
switch (heightMode) {
case MeasureSpec.EXACTLY: // 高度是確定的
height = heightSize;
break;
case MeasureSpec.AT_MOST: // AT_MOST一般是因為設(shè)置了wrap_content屬性獲得枕磁,但不全是這樣渡蜻,所以的全面考慮layoutParams的3種不同情況
if (layoutParamHeight == LayoutParams.WRAP_CONTENT) {
int disert = Math.max(suggestedMinHeight, extraHeight);
height = Math.min(disert, heightSize);
} else if (layoutParamHeight == LayoutParams.MATCH_PARENT) {
height = heightSize;
} else {
height = Math.min(layoutParamHeight + extraHeight, heightSize);
}
break;
case MeasureSpec.UNSPECIFIED:
if (layoutParamHeight == LayoutParams.WRAP_CONTENT || layoutParamHeight == LayoutParams.MATCH_PARENT) {
height = Math.max(suggestedMinHeight, extraHeight);
} else {
height = layoutParamHeight + extraHeight;
}
break;
default:
}
return height;
}
MeasureSpecMode
關(guān)于MeasureSpecMode的3種狀態(tài):UNSPECIFIED,EXACTLY计济,AT_MOST茸苇。
常使用的有EXACTLY和AT_MOST。
- EXACTLY這種情形是子View設(shè)置了明確的大小時峭咒,父容器直接告訴子View一個大小税弃。
- AT_MOST 在父容器的大小確定,但子View設(shè)置了wrap_content時凑队,子View將不能超過父容器的大小時则果,即可傳遞該模式幔翰。
- UNSPECIFIED 子View想多大就多大,這在某些wrap_content的View中是存在的西壮,內(nèi)容大小可以超過父容器遗增,只是在屏幕上不能展示,但是通過getMeasuredWidth()獲取的大小是超過父容器的款青。