Android 是否可以使用ScrollView和HorizontalScrollView实现对角滚动?

Android 是否可以使用ScrollView和HorizontalScrollView实现对角滚动?,android,android-layout,scrollview,horizontalscrollview,custom-scrolling,Android,Android Layout,Scrollview,Horizontalscrollview,Custom Scrolling,我有一个布局文件,既有ScrollView,也有HorizontalScrollView。我可以在水平方向或垂直方向滚动。是否可以对角滚动 <ScrollView android:layout_width="wrap_content" android:layout_height="wrap_content"> <HorizontalScrollView android:layout_width="wrap

我有一个布局文件,既有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>