ScrollView嵌套ListView、RecyclerView高度自适应
ScrollView嵌套ListView或RecyclerView。可能导致ListView和RecyclerView显示不完整,高度无法完全展开。
ListView
针对ScrollView嵌套ListView时只显示第一个item高度的bug,可在Activity里动态修改ListView的高度(即计算每个item和分割线的高度后进行相加得到总高度),在setAdapter之后调用下面这个函数即可。
值得注意的是,此时ListView的子item根布局应设为LinearLayout。
private void setListViewHeightBasedOnChildren(ListView listView) {
if (listView == null) {
return;
}
ListAdapter listAdapter = listView.getAdapter();
if (listAdapter == null) {
return;
}
int totalHeight = 0;
for (int i = 0; i < listAdapter.getCount(); i++) {
View listItem = listAdapter.getView(i, null, listView);
listItem.measure(0, 0);
totalHeight += listItem.getMeasuredHeight();
}
ViewGroup.LayoutParams params = listView.getLayoutParams();
params.height = totalHeight + (listView.getDividerHeight() * (listAdapter.getCount() - 1));
listView.setLayoutParams(params);
}
RecyclerView
针对ScrollView嵌套RecyclerView时显示不完整的bug,直接在RecyclerView外嵌套一层RelationLayout即可解决。
<RelativeLayout
android:layout_width="match_parent"
android:layout_height="wrap_content">
<android.support.v7.widget.RecyclerView
android:id="@+id/recyclerview"
android:focusable="false"
android:layout_width="match_parent"
android:layout_height="match_parent">
</android.support.v7.widget.RecyclerView>
</RelativeLayout>
版权声明:
作者:Joe.Ye
链接:https://www.appblog.cn/index.php/2023/02/25/scrollview-nested-listview-recyclerview-highly-adaptive/
来源:APP全栈技术分享
文章版权归作者所有,未经允许请勿转载。
共有 0 条评论