NestedScrollView + ExpandableListView 显示不全问题和滑动冲突问题 。
1. 首先是页面显示不全问题
设置此行代码即可
android:fillViewport="true"
2. 滑动冲突问题
主要有两种 ,一个是根本滑不动 ,一个是只能滑动 ExpandableListView 。
需要重写 ExpandableListView 。
public class NestedExpandableListView extends ExpandableListView {undefined
public NestedExpandableListView(Context context) {undefined
super(context);
}
public NestedExpandableListView(Context context, AttributeSet attrs) {undefined
super(context, attrs);
}
public NestedExpandableListView(Context context, AttributeSet attrs, int defStyleAttr) {undefined
super(context, attrs, defStyleAttr);
}
@Override
public void onMeasure(int widthMeasureSpec, int heightMeasureSpec) {undefined
int heightMeasureSpec_custom = MeasureSpec.makeMeasureSpec(
Integer.MAX_VALUE >> 2, MeasureSpec.AT_MOST);
super.onMeasure(widthMeasureSpec, heightMeasureSpec_custom);
ViewGroup.LayoutParams params = getLayoutParams(); // 存在一个问题 ,如果是全部收起的话 ,就会导致页面空白
params.height = getMeasuredHeight();
}
}
欢迎各位小伙伴加入我的qq群:开发一群:454430053 开发二群:537532956 这里已经有很多小伙伴在等你了,快来加入我们吧
文章来源: wukong.blog.csdn.net,作者:再见孙悟空_,版权归原作者所有,如需转载,请联系作者。
原文链接:wukong.blog.csdn.net/article/details/106320476
- 点赞
- 收藏
- 关注作者
评论(0)