Changing ScrollView scrollBarStyle programmatically in Android

I am trying to implement different styles for ScrollView scrollBarStyle in Android. I am well aware that the setScrollBarStyle () method is used, but I do not know what specific styles need to be accessed.

Can someone provide additional information?

+5
source share
1 answer

try these types

SCROLLBARS_INSIDE_OVERLAY
SCROLLBARS_INSIDE_INSET
SCROLLBARS_OUTSIDE_OVERLAY
SCROLLBARS_OUTSIDE_INSET

like setScrollBarStyle(View.SCROLLBARS_OUTSIDE_INSET);

+6
source

All Articles