How to always show scrollbar
As of now the best way is to use android:fadeScrollbars="false"
in xml which is equivalent to ScrollView.setScrollbarFadingEnabled(false);
in java code.
Setting the android:scrollbarFadeDuration="0"
will do the trick.