我有一个ScrollView
里面有一个ListView
后面跟着几个TextViews。我使用的ListView
使用自定义适配器填充,项目的宽度可能会因我们所在的页面而异。这是我的ScrollView
:
<RelativeLayout
android:layout_width="match_parent"
android:layout_height="match_parent">
<ListView
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:id="@+id/options_listview">
</ListView>
<RelativeLayout
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_below="@id/options_listview">
<TextView
android:layout_width="match_parent"
android:layout_height="24dp"
android:text="Explanation:"
android:id="@+id/explanation_header"/>
<TextView
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:id="@+id/explanation_text"
android:layout_below="@+id/explanation_header"
android:text="stuff..."/>
</RelativeLayout>
</RelativeLayout>
</ScrollView>
问题
ListView的高度未完全显示。我以编程方式将高度设置为:
public static void setListViewHeight(ListView list) {
int height = 0;
for (int i = 0; i < list.getCount(); i++) {
View childView = list.getAdapter().getView(i, null, list);
childView.measure(View.MeasureSpec.makeMeasureSpec(0, View.MeasureSpec.UNSPECIFIED), View.MeasureSpec.makeMeasureSpec(0, View.MeasureSpec.UNSPECIFIED));
height+= childView.getMeasuredHeight();
}
//dividers height
height += list.getDividerHeight() * list.getCount();
ViewGroup.LayoutParams params = list.getLayoutParams();
params.height = height;
list.setLayoutParams(params);
Log.i("Height ", height + "");
}
现在我在日志中看到,无论项目高度如何,我都为所有listView获得相同的高度。如何在我的scrollview中完全显示ListView?
答案 0 :(得分:0)
Please try this layout:
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent">
<ListView
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_above="@+id/tVL"
android:id="@+id/options_listview">
</ListView>
<RelativeLayout
android:id="@+id/tVL"
android:layout_alignParentBottom="true"
android:layout_width="match_parent"
android:layout_height="wrap_content">
<TextView
android:layout_width="match_parent"
android:layout_height="24dp"
android:text="Explanation:"
android:id="@+id/explanation_header"/>
<TextView
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:id="@+id/explanation_text"
android:layout_below="@+id/explanation_header"
android:text="stuff..."/>
</RelativeLayout>
</RelativeLayout>
答案 1 :(得分:0)
正如Khizar Hayat指出的那样,ListView
不应该在ScrollView中使用,因为listview已经具有滚动功能。这样做会产生设计冲突。
所以,制作3种不同的布局解决了我的问题:
ListView
保留在第一个布局文件中。header.xml
并将ListView
上方的所有内容放入该布局中。footer.xml
并将所有内容保持在该页脚布局中的ListView
下方。ListView
这样,一切都滚动,所有布局都没有任何剪切。好消息是我们可以为ListView
提供任意数量的页眉和页脚。