我尝试了以下方法来禁用滚动时的蓝色阴影
所有这些都不起作用:
android:fadingEdge="none"
android:background="@null"
android:cacheColorHint="@null"
在您的 XML 中使用它ScrollView
:
android:overScrollMode="never"
您可以设置为“始终”、“从不”或“ifContentScrolls”。
use below attribute for ListView
to stop scrolling shadow
android:scrollingCache="false"
android:fadingEdge="none"
is used to stop black background on scrolling
尝试如下使用
android:cacheColorHint="@android:color/transparent"
我怀疑 @null 和什么都没有一样。尝试将值设置为完全透明:像这样:
android:background="#00000000"
android:cacheColorHint="#00000000"