我使用支持库rev 19.1中的新组件 - SwipeRefreshLayout。
它似乎工作得很好,除了一件事:
当我慢慢滚动ListView时(为了触发拉动刷新),滚动有毛刺(列表上下跳动)。
当我快速滚动或向下滚动时(常规滚动,而不是拉动刷新部分),这不会发生。
以下是我如何连接xml中的SwipeRefreshLayout:
<android.support.v4.widget.SwipeRefreshLayout
android:id="@+id/swipe_container"
android:layout_width="match_parent"
android:layout_height="match_parent">
<ListView
android:id="@android:id/list"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:scrollbars="none"
android:scrollingCache="false"
android:listSelector="@android:color/transparent" />
</android.support.v4.widget.SwipeRefreshLayout>
这个问题有解决方法吗?
感谢adavnce!