显然,由于一些愚蠢的原因,overScroll选项实际上在2.3.5-2.3.7中并不存在。
.setOverScrollMode(ListView.OVER_SCROLL_NEVER)在禁用它方面做得很好,但它破坏了我的列表视图,因为它根本不再支持抛出。
有没有一个库或者一些重写可以用来改变overscroll的颜色,或者甚至正确地禁用它?
在XML中将overscroll模式设置为never也不起作用。
在4.1、2.3.3、4.2、3.x或4.01上不会出现此问题
发布于 2012-11-20 00:11:14
您好,尝试添加android:scrollbars="none",
<ListView
android:id="@+id/listView1"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:scrollbars="none" >
</ListView>https://stackoverflow.com/questions/13457472
复制相似问题