简体   繁体   中英

How to fix ListView inside ScrollView?

I need to put a ListView inside ScrollBar. I know there is other question about this theme but the answers are very complex and bad.

The ListView doesn't show all its elements, only the first one.

The main structure of my relevant code:

<RelativeLayout
        android:layout_width="match_parent"
        android:layout_height="wrap_content">
        <ScrollView
            android:layout_width="match_parent"
            android:layout_height="wrap_content">
            <LinearLayout
                android:layout_width="match_parent"
                android:layout_height="wrap_content">
                ....MORE ELEMENTS....
                <ListView
                    android:layout_width="match_parent"
                    android:layout_height="wrap_content"

                    ></ListView>

            </LinearLayout>
        </ScrollView>
    </RelativeLayout>

Put your ListView in a separate LinearLayout parent or you can add it in a separate.xml file according to your choice and add

 android:fillViewport="true"

in your scrollview, like this

<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="match_parent"
    android:layout_height="wrap_content">

<ScrollView
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:fillViewport="true">

    <LinearLayout
        android:layout_width="match_parent"
        android:layout_height="wrap_content">
        <!....MORE ELEMENTS....>

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

            <ListView
                android:layout_width="match_parent"
                android:layout_height="wrap_content"/>

        </LinearLayout>

    </LinearLayout>

</ScrollView>

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM