rahul
rahul

Reputation: 2906

Scrollbars in android

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

Upvotes: 0

Views: 539

Answers (3)

Felix
Felix

Reputation: 89566

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.

Upvotes: 1

quanticle
quanticle

Reputation: 5020

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.

Upvotes: 0

CommonsWare
CommonsWare

Reputation: 1006539

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

Upvotes: 1

Related Questions