How to make horizontalscrollview scroll-line invisible?
Apply this property to scrollView in xml file.
android:scrollbars="none"
The following will remove the scrollbar in your scrollview programmatically:
HorizontalScrollView horizontalScrollView = (HorizontalScrollView)
findViewById(R.id.horizontalScrollView);
horizontalScrollView.setHorizontalScrollBarEnabled(false);