ScrollView中的高度视图

时间:2016-02-26 13:19:57

标签: android listview scrollview

我有一个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?

2 个答案:

答案 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种不同的布局解决了我的问题:

  1. ListView保留在第一个布局文件中。
  2. 制作另一个布局header.xml并将ListView上方的所有内容放入该布局中。
  3. 制作第三个布局footer.xml并将所有内容保持在该页脚布局中的ListView下方。
  4. 在活动类中夸大这些页眉和页脚布局,并将页眉和页脚添加到ListView
  5. 这样,一切都滚动,所有布局都没有任何剪切。好消息是我们可以为ListView提供任意数量的页眉和页脚。