Updated 22 December 2016
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" > |
If you have more details or questions, you can reply to the received confirmation email.
Back to Home
Be the first to comment.