1,自定義一個StillListView繼承ListView,重寫方法
@Override
public void onMeasure(int widthMeasureSpec,int heightMeasureSpec) {
int expandSpec = MeasureSpec.makeMeasureSpec(
Integer.MAX_VALUE >>2, MeasureSpec.AT_MOST);
super.onMeasure(widthMeasureSpec, expandSpec);
}
2,scrollView中的直接子LInearlayout使用android:layout_height="wrap_content",
3,里面的三四級嵌套的Linearlayout不要使用android:layout_weight="1"這種寫法。