Android 去掉ListView/GridView下拉出空白回弹的效果,以及使用PullToRefresh出现的问题

有关定制系统使用ListView和GridView会用回弹效果,如果开发的时候使用下拉刷新时,会造成一定的干扰。

 android:overScrollMode="never"
就可以去掉回弹效果。但是在使用PullToRefreshListView时,右下角会有一个图标,需要在PullToRefreshListView中设置属性


  xmlns:ptr="http://schemas.android.com/apk/res-auto"
  ptr:ptrShowIndicator="false"

就可以去掉右下角的小图标。

参考:

http://www.it6.in/archives/238.html

http://www.tuicool.com/articles/AZZjaa

http://www.oschina.net/question/779773_168152

你可能感兴趣的:(android)