Woo! Hooy!
We have just recieved your project brief and our expert will contact you shortly.
Send Again
Close
In this blog,
I will show you how to remove the scroll stick while scrolling in android.
If you want to do it programmatically then simply add this code in your java file,
1 2 |
scrollView.setVerticalScrollBarEnabled(false); scrollView.setHorizontalScrollBarEnabled(false); |
If you want to do by XML then simply add this attribute in your XML,
1 |
android:scrollbars="none" |
you can use like this,
1 2 3 4 5 6 |
<ScrollView android:layout_width="match_parent" android:layout_height="match_parent" android:id="@+id/scrollView" android:scrollbars="none" > |
Be the first to comment.