想要ScrollView中嵌套显示ListView
需要自定义ListView
并重写onMeasure方法
重新计算 heightMeasureSpec的高度
int newHeight = MeasureSpec.makeMeasureSpec(Integer.MAX_VALUE>>2,MeasureSpec.AT_MOST);
返回新的高度
super.onMeasure(widthMeasureSpec, newhight);
代码如下:
自定义的ListView
xml布局文件,ScrollView中嵌入LinearLayout和ListView
Java代码 ListView中放入数据
时间: 2024-10-28 15:08:12