刚开始在引入布局外面直接套了一个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>