0

In android scroll bar there seem to be an additional indicator appearing top of small scroll indicator with up down arrows, is it possible to remove this additional larger scroll indicator. I might have missed the api method in ScrollView.

setOverScrollMode(View.OVER_SCROLL_NEVER)

But I do not want to remove small scroll indicator appearing.

this also didn't remove the additional larger indicator with arrows

Larger indicator with arrows

Thank you :)

Tharindu Madushanka
  • 3,241
  • 7
  • 31
  • 33
  • Look at here http://stackoverflow.com/questions/6273335/remove-scroll-bar-track-from-scrollview-in-android – Shailendra Madda Jan 18 '14 at 13:07
  • view.setScrollBarStyle(View.SCROLLBARS_INSIDE_OVERLAY) does not help either. I want to keep small scroll bar but want to remove additional scroll indicator with up down arrows that appear on scroll – Tharindu Madushanka Jan 18 '14 at 13:14

1 Answers1

0

To remove scrollbar (indicator) add this in xml layout file

android:scrollbars="none"
android:scrollbarStyle="insideOverlay"

Fore more about scrollview visit this link

Chirag Ghori
  • 4,231
  • 2
  • 20
  • 35