答案 0 :(得分:3)
试试这个你可以使用android:scrollbars="none"
来禁用滚动棒;
<ScrollView xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:id="@+id/mainScroll"
android:scrollbars="none"
/>
或以编程方式设置
ScrollView.setVerticalScrollBarEnabled(false);
ScrollView.setHorizontalScrollBarEnabled(false);
或在滚动时禁用蓝色阴影在xml of scrollview中使用
android:overScrollMode="never"
或使用此选项在滚动时更改蓝色阴影在xml of scrollview中使用
android:cacheColorHint="#ff00"
答案 1 :(得分:2)
使用以下代码禁用滚动条;
<ScrollView xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:id="@+id/mainScroll"
android:scrollbars="none" <!-- line to be added -->
/>
答案 2 :(得分:2)
在java中添加此代码
myScrollView.setVerticalScrollBarEnabled(false);
myScrollView.setHorizontalScrollBarEnabled(false);
在xml中将以下属性添加到ScrollView
android:scrollbars="none"
喜欢这个
<ScrollView xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:id="@+id/mainScroll"
android:scrollbars="none" <!-- Add this line -->
>