Reputation: 7020
How can I get rid of the scrollbars on a HorizontalScrollView
?
Upvotes: 86
Views: 57270
Reputation: 25803
Add the following to your xml:
android:scrollbars="none"
Or hide the scrollbars programmatically:
view.setVerticalScrollBarEnabled(false);
view.setHorizontalScrollBarEnabled(false);
Upvotes: 276