我需要在滚动视图中实现列表视图。 我知道在滚动视图中使用listview并不是一个好主意,但是它需要app,所以我需要实现它。 在应用程序中我使用TabLayout有3种类型的选项卡,如类别1,类别2和类别3,以过滤数据。
在第一个标签类别中1我需要添加2个列表视图,一个是修复项目,第二个是动态的。 拳头列表视图是固定的,所以我可以给它固定的高度。 但第二个List视图是动态的,所以我需要根据列表视图中的值总数给出高度。
我尝试了许多方法来提供动态高度,但没有完成任务。
这是方法i alredy尝试: -
------------------- first --------------------------- ---- 首先来自问题
Android: How to measure total height of ListView
public static void getTotalHeightofListView(ListView listView) {
ListAdapter mAdapter = listView.getAdapter();
int totalHeight = 0;
for (int i = 0; i < mAdapter.getCount(); i++) {
View mView = mAdapter.getView(i, null, listView);
mView.measure(
View.MeasureSpec.makeMeasureSpec(0, View.MeasureSpec.UNSPECIFIED),
View.MeasureSpec.makeMeasureSpec(0, View.MeasureSpec.UNSPECIFIED));
totalHeight += mView.getMeasuredHeight();
Log.w("HEIGHT" + i, String.valueOf(totalHeight));
}
ViewGroup.LayoutParams params = listView.getLayoutParams();
params.height = totalHeight
+ (listView.getDividerHeight() * (mAdapter.getCount() - 1));
listView.setLayoutParams(params);
listView.requestLayout();
}
-------------------第二--------------------------- ---- 从问题 https://stackoverflow.com/questions/17693578
public static class ListUtils {
public static void setDynamicHeight(ListView mListView) {
ListAdapter mListAdapter = mListView.getAdapter();
if (mListAdapter == null) {
// when adapter is null
return;
}
int height = 0;
int desiredWidth = MeasureSpec.makeMeasureSpec(mListView.getWidth(), MeasureSpec.UNSPECIFIED);
for (int i = 0; i < mListAdapter.getCount(); i++) {
View listItem = mListAdapter.getView(i, null, mListView);
listItem.measure(desiredWidth, MeasureSpec.UNSPECIFIED);
height += listItem.getMeasuredHeight();
}
ViewGroup.LayoutParams params = mListView.getLayoutParams();
params.height = height + (mListView.getDividerHeight() * (mListAdapter.getCount() - 1));
mListView.setLayoutParams(params);
mListView.requestLayout();
}
}
-------------------错误-------------------
答案 0 :(得分:0)
在 activity xml 文件中,您可以在 ScrollView 中使用 LinearLayout ,然后可以指定 android:weight 属性。
您可以为单个元素指定权重,并为其自己的可用空间指定所有其他元素。
答案 1 :(得分:0)
更好的练习,它使用支持动态视图更改的列表。对于您的问题,有一个特殊列表 - LinkedListView