删除android gridview滚动结束突出显示
滚动网格视图时,到达视图末尾后,会出现突出显示颜色,其强度取决于您拖动手指的距离。我的 atrix,这个颜色是浅蓝色。
我正在尝试去除这种颜色,但到目前为止尚未成功。我的 minSDK 是 2.2
澄清一下,我不是在谈论 gridview 的褪色边缘或单个项目的突出显示颜色。
When scrolling through a gridview, after hitting the end of the view, a highlight color appears with intensity based on how far you keep dragging your finger. An my atrix, this color is a light blue.
I'm trying to remove this color but have been unsuccessful thus far. My minSDK is 2.2
To clarify, I'm not talking about the faded edges of the gridview or the individual items highlight color.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
使用
setOverScrollMode
方法或随附的 XML 属性android:overScrollMode
。您可以在布局中的滚动视图上设置android:overScrollMode="never"
,而无需调用 API 9 (Android 2.3) 之前不存在的方法。Use the
setOverScrollMode
method or the accompanying XML attribute,android:overScrollMode
. You can setandroid:overScrollMode="never"
on scrolling views in your layouts without having to call a method that did not exist before API 9 (Android 2.3).