我想知道如何在一个xml文件中创建多个水平滚动视图。 这是一个简单的普通滚动视图调整还是更复杂?
由于
答案 0 :(得分:0)
是的,您应该能够在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>