Hide Scrollbar of HorizontalScrollView
Add the following to your xml:
android:scrollbars="none"
Or hide the scrollbars programmatically:
view.setVerticalScrollBarEnabled(false);
view.setHorizontalScrollBarEnabled(false);
Add the following to your xml:
android:scrollbars="none"
Or hide the scrollbars programmatically:
view.setVerticalScrollBarEnabled(false);
view.setHorizontalScrollBarEnabled(false);