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
you have to try the following solutions
android:scrollbars="none"
OR
android:scrollbarThumbVertical="@null" android:scrollbarThumbHorizontal="@null"
OR Change color of scrollBars to hide them
android:scrollbarThumbVertical="@android:color/transparent"