How to always show scrollbar

jul picture jul · Apr 18, 2011 · Viewed 143.1k times · Source

The scrollbar in my scrollview is only visible when I start scrolling. How can I always show it?

Answer

Rejinderi picture Rejinderi · Oct 27, 2011

As of now the best way is to use android:fadeScrollbars="false" in xml which is equivalent to ScrollView.setScrollbarFadingEnabled(false); in java code.