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
For hiding a vertical scrollbar, do this in the XML:
android:scrollbarThumbVertical="@null"
And for Hiding horizontal scrollbar do this :
android:scrollbarThumbHorizontal="@null"
The above lines of codes will work if you want to hide the scrollbar without disabling it.
And for disabling a scrollbar, write this:
android:scrollbars="none"