Hide Scrollbar from Android Views


If you have scroll element on your Android Intent like HorizontalScrollView, TextView or elements inside ScrollView, and you do not want the ScrollBar to be not visible when the element is scrolled just add the below line to your element XML tag.

android:scrollbars="none"

You can also achieve this programatically using methods setVerticalScrollBarEnabled(false) and setHorizontalScrollBarEnabled(false) for your view.

view.setVerticalScrollBarEnabled(false);
view.setHorizontalScrollBarEnabled(false);
ScrollBar hidden for HorizontalScrollView.png
ScrollBar hidden for HorizontalScrollView
ScrollBar visible for HorizontalScrollView.png
ScrollBar visible for HorizontalScrollView


















Copyright © Code2care 2024 | Privacy Policy | About Us | Contact Us | Sitemap