レイアウトに問題があります。内部に RecyclerView を含む SwipeRefreshLayout を作成しました。Android 4.2.2+ではすべて正常に動作していますが、Andorid 2.3.4ではRecyclerViewのどの場所でも更新されるため、上にスクロールできず、下にスクロールしてから上にスクロールする必要があります。
これは私のコードです:
<android.support.v4.widget.SwipeRefreshLayout
xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/forum_swipe_container"
android:layout_width="match_parent"
android:layout_height="match_parent">
<android.support.v7.widget.RecyclerView
xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/LVP"
android:layout_width="wrap_content"
android:layout_height="match_parent"
android:gravity="center" />
</android.support.v4.widget.SwipeRefreshLayout>
この問題を見つけました: https://code.google.com/p/android/issues/detail?id=78191しかし、解決策はありません。それを修正する方法はありますか?