Android scrollview滑动条无法滑动

公良照
2023-12-01

Android scrollview滑动条无法滑动

刚开始在引入布局外面直接套了一个scrollview发现无法滑动

<ScrollView
        android:layout_width="match_parent"
        android:layout_height="wrap_content">
            <include layout="@layout/second_model" />
    </ScrollView>

于是在引入布局外面再套了一个线性布局就可以滑动了

<ScrollView
        android:layout_width="match_parent"
        android:layout_height="wrap_content">
        <LinearLayout
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:orientation="vertical">
            <include layout="@layout/second_model" />
        </LinearLayout>
    </ScrollView>
 类似资料: