How can I get rid of the scrollbars on a HorizontalScrollView ?
HorizontalScrollView
Add the following to xml:
android:scrollbars="none"
Hide software scrollbars:
view.setVerticalScrollBarEnabled(false); view.setHorizontalScrollBarEnabled(false);