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);
2.1m questions
2.1m answers
60 comments
57.0k users