有关定制系统使用ListView和GridView会用回弹效果,如果开发的时候使用下拉刷新时,会造成一定的干扰。
<span style="font-size:18px;">android:overScrollMode="never"</span>
就可以去掉回弹效果。但是在使用PullToRefreshListView时,右下角会有一个图标,需要在PullToRefreshListView中设置属性
<span style="font-size:18px;"> xmlns:ptr="http://schemas.android.com/apk/res-auto"
ptr:ptrShowIndicator="false"</span>
就可以去掉右下角的小图标。
参考:
http://www.it6.in/archives/238.html
http://www.tuicool.com/articles/AZZjaa
http://www.oschina.net/question/779773_168152