I have an app with a ScrollView, and I don\'t want the scrollbar to appear on the screen. How can I hide the scrollbar in a ScrollView while making sure scrolling still work
In my experience,
android:scrollbarThumbVertical="@null"
can cause NullPointerException in older devices. Use this instead:
android:scrollbarThumbVertical="@android:color/transparent"
Cheers!