0

Can any one tell me how i can set my scroll view with both vertical and horizontal scroll ?

rahul
  • 2,758
  • 5
  • 32
  • 53

3 Answers3

1

You can't. ScrollView is vertical scroll. HorizontalScrollView is horizontal scroll.

CommonsWare
  • 986,068
  • 189
  • 2,389
  • 2,491
1

The only View (in the SDK) that I know of that has both vertical and horizontal scroll is the WebView. See if you can work with that. If not, you'll have to create your own View.

Felix
  • 88,392
  • 43
  • 149
  • 167
0

If you need both horizontal and vertical scrolling, you shouldn't be using ScrollViews. Instead, as this question points out, you can use a combination of FrameLayouts and RelativeLayouts to achieve the desired effect.

Community
  • 1
  • 1
quanticle
  • 4,872
  • 6
  • 32
  • 42