4

I have a layout file having both ScrollView and HorizontalScrollView. And am able to scroll either in horizontal direction or vertical direction. Will it be possible to scroll diagonally?

<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>
Midhun Kumar
  • 477
  • 5
  • 17

1 Answers1

0

To achieve a diagonal scroll, you should disable the touch on both views and do the scrolling manually, using a GestureDetector.

For a detailed explanation, see this answer.

cmak
  • 513
  • 1
  • 4
  • 13