Android - 列表视图

时间:2017-05-04 07:34:14

标签: android

我想让ListViews的大小与实际内容相同。例如,如果有20个项目,我希望它显示20个项目而不会使列表本身像现在一样滚动。

看起来像这个atm:列表非常小,可以滚动。 https://i.gyazo.com/eb8902a17936f54a2271b51abe228607.png

<ScrollView xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:tools="http://schemas.android.com/tools"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    tools:context="com.example.tiagosilva.amob_android.ArchiveFragment">


    <LinearLayout
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:orientation="vertical"
        android:padding="20dp">

        <TextView
            android:layout_width="match_parent"
            android:layout_height="match_parent"
            android:text="Tube Data"
            android:textColor="@color/AMOB_yellow"/>

    <ListView
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:id="@+id/tubeData_list">
    </ListView>

        <TextView
            android:layout_width="match_parent"
            android:layout_height="match_parent"
            android:text="Tool Data"
            android:textColor="@color/AMOB_yellow"/>

    <ListView
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:id="@+id/toolData_list">
    </ListView>

        <Button
            android:id="@+id/btn_clear_all"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:background="@drawable/round_buttons"
            android:text="Clear all"
            android:textColor="@color/AMOB_gray"
            android:layout_marginBottom="10dp"
            android:layout_marginTop="10dp"
            android:gravity="center"/>

    </LinearLayout>

  </ScrollView>

1 个答案:

答案 0 :(得分:0)

尝试使用它,可能你需要解决它: -

 Utility.setListViewHeightBasedOnChildren(yourlistview);

添加此方法: -

public static class Utility {
        public static void setListViewHeightBasedOnChildren(ListView listView) {
            ListAdapter listAdapter = listView.getAdapter();
            if (listAdapter == null) {
                // pre-condition
                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);
        }
    }

它不会滚动,但您可以根据需要获得实际内容的大小。