问题
How can I get rid of the scrollbars on a HorizontalScrollView?
回答1:
Add the following to your xml:
android:scrollbars="none"
Or hide the scrollbars programmatically:
view.setVerticalScrollBarEnabled(false);
view.setHorizontalScrollBarEnabled(false);
来源:https://stackoverflow.com/questions/12258814/hide-scrollbar-of-horizontalscrollview