I am trying to implement different styles for the ScrollView's scrollBarStyle in Android. I am well aware that the setScrollBarStyle() method is used, however I am not aware of what particular styles to access.

Could anyone please provide some additional information?

Thanks

link|improve this question

74% accept rate
feedback

1 Answer

up vote 0 down vote accepted

try this types

SCROLLBARS_INSIDE_OVERLAY
SCROLLBARS_INSIDE_INSET
SCROLLBARS_OUTSIDE_OVERLAY
SCROLLBARS_OUTSIDE_INSET

like setScrollBarStyle(View.SCROLLBARS_OUTSIDE_INSET);

link|improve this answer
Thanks Luk, this was what I needed – user788511 Sep 20 '11 at 7:50
This is correct, except that these constants are defined in the View class. For example: View.SCROLLBARS_INSIDE_OVERLAY – Peter Bjorn Oct 31 '11 at 12:48
I edit this, now is with View.SCROLLBARS_OUTSIDE_INSET – Lukap Oct 31 '11 at 13:06
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.