I want to use the entire width of the screen and be able to make it scrollable.
So I want to hide the scroll indicator of a ScrollView
. How can I achieve this?
If you want a ScrollView
without scroll bars, you can use the following:
android:scrollbars="none"
You can do it porgramatically as follows:
yourScrollView.setVerticalScrollBarEnabled(false);
yourScrollView.setHorizontalScrollBarEnabled(false);
Edit: Can you try this one android:scrollbarStyle="insideOverlay"
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With