在我的 Android 应用中,我想使用 ScrollView ,它必须可滚动到 X轴和Y轴即可。不使用 ScrollView 和 HorizontalScrollView ,因为我无法使用一个 ScrollView 并启用两个滚动。我的所作所为在下面。
<ScrollView
android:id="@+id/srv1"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:layout_below="@+id/ll1" >
<HorizontalScrollView
android:layout_width="fill_parent"
android:layout_height="wrap_content" >
<LinearLayout
android:id="@+id/linearMain"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:animateLayoutChanges="true"
android:orientation="vertical" >
</LinearLayout>
</HorizontalScrollView>
</ScrollView>
是否可以只使用一个滚动视图并启用两个滚动。谢谢!!
答案 0 :(得分:0)
AFAIK,不。 ScrollView用于垂直滚动,ListView也是如此。 HorizontalScrollView仅用于水平滚动。 要实现x和y轴滚动,必须同时使用ScrollView和HorizontalScrollView。