How can I get rid of the scrollbars on a HorizontalScrollView?
HorizontalScrollView
Add the following to your xml:
android:scrollbars="none"
Or hide the scrollbars programmatically:
view.setVerticalScrollBarEnabled(false); view.setHorizontalScrollBarEnabled(false);
1.4m articles
1.4m replys
5 comments
57.0k users