サポート ライブラリ rev 19.1 - SwipeRefreshLayout の新しいコンポーネントを使用しています。
ListView
をゆっくりとスクロールすると (pull-to-refresh をトリガーするために)、スクロールに不具合が発生します (リストが上下にジャンプします)。
これは、高速にスクロールしたり、下にスクロールしたりした場合には発生しません (プルして更新するセクションではなく、通常のスクロール)。
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>
この問題の修正はありますか?
よろしくお願いします!