Hide or Show Scroll Bar
Hide or Show Scroll Bar
By using this simple code, you can show or hide the scroll bar of ScrollView, ListView, RecyclerView or GridView.
Codes:
To hide:
vscroll1.setVerticalScrollBarEnabled(false);
To show:
vscroll1.setVerticalScrollBarEnabled(true);
vscroll1 - Scroll Layout ID (scrollview , listview, etc)
Comments
Post a Comment