Rumah > Soal Jawab > teks badan
PHP中文网2017-04-17 17:44:22
首先有点不明白的位置,这个界面为什么会嵌套listView,我觉得一个listView就可以了啦
在listView嵌套的时候,一般是写一个自定义类继承ListView,然后重写onMeasure方法
@Override
protected void onMeasure(int widthMeasureSpec, int heightMeasureSpec) {
int expandSpec = MeasureSpec.makeMeasureSpec(Integer.MAX_VALUE >> 2, MeasureSpec.AT_MOST);
super.onMeasure(widthMeasureSpec, expandSpec);
}
然后把被嵌套的listView改成这个控件就好了,不过这样虽然简单粗暴,但是效率不怎么好,能不嵌套的时候尽量不要嵌套