是否可以使用 ScrollView 和 Horizo​​ntalScrollView 实现对角滚动?

Mid*_*mar 6 android scrollview custom-scrolling horizontalscrollview android-layout

我有一个同时包含 ScrollView 和 Horizo​​ntalScrollView 的布局文件。并且能够在水平方向或垂直方向滚动。可以对角滚动吗?

<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>
Run Code Online (Sandbox Code Playgroud)