文章详情页
android 中ListView嵌套ListView出现的问题
问题描述
问题解答
回答1:首先有点不明白的位置,这个界面为什么会嵌套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改成这个控件就好了,不过这样虽然简单粗暴,但是效率不怎么好,能不嵌套的时候尽量不要嵌套
相关文章:
排行榜