How to always show scrollbar
问题 The scrollbar in my scrollview is only visible when I start scrolling. How can I always show it? 回答1: As of now the best way is to use android:fadeScrollbars="false" in xml which is equivalent to ScrollView.setScrollbarFadingEnabled(false); in java code. 回答2: Setting the android:scrollbarFadeDuration="0" will do the trick. 回答3: There are 2 ways: from Java code: ScrollView.setScrollbarFadingEnabled(false); from XML code: android:fadeScrollbars="false" Simple as that! 回答4: Try this as the above