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
Now the scroll does not work anymore if u set android:scrollbars="none"
android:scrollbars="none"
I have solved the problem with
android:scrollbars="vertical" // or horizontal
and setting its size to 0 dp
android:scrollbarSize="0dp"