In iOS I can easily change the inset of the scrollbar in a UIScrollView by setting the scrollIndicatorInsets. Basically what happens is the UIScrollView size and content area stays the same, yet the scrollbar can be smaller, which is very nice when using some (semi-transparent) overlays over the top or bottom of the scrollview, since the scrollbar won't be hidden behind the overlays.
If it possible to achieve the same result in Android? Could I have a full-size scrollview, yet have a smaller sized scrollbar (e.g. scrollview begins at pixel 0 and ends at pixel 100, scrollbar begins at pixel 10 and ends at pixel 90? If possible, how do I achieve this?