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"这种写法。
网友评论