我想知道如何在一个 xml 文件中制作多个水平滚动视图。这是对普通滚动视图的简单调整还是要复杂得多?
谢谢
是的,您应该能够在 xml 中放置多个滚动视图。您可以尝试以下方法:
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/LinearLayoutRight" android:layout_width="match_parent" android:layout_height="match_parent" android:orientation="vertical">
<HorizontalScrollView android:id="@+id/scrollView1" android:background="#000" android:layout_width="match_parent" android:layout_height="300dp">
</HorizontalScrollView>
<HorizontalScrollView android:id="@+id/scrollView1" android:background="#f00" android:layout_width="match_parent" android:layout_height="300dp">
</HorizontalScrollView>
</LinearLayout>