我有一个同时具有 ScrollView 和 HorizontalScrollView 的布局文件。并且能够在水平方向或垂直方向滚动。是否可以对角滚动?
<ScrollView
android:layout_width="wrap_content"
android:layout_height="wrap_content">
<HorizontalScrollView
android:layout_width="wrap_content"
android:layout_height="wrap_content">
<Customview..../>
</HorizontalScrollView>
</ScrollView>