我有一个SwipeRefreshLayout,里面有一个NestedScrollView和其他一堆视图,包括一个RecyclerView,如下所示:
<android.support.v4.widget.SwipeRefreshLayout
android:id="@+id/swipe_refresh"
android:layout_width="match_parent"
android:layout_height="match_parent">
<android.support.v4.widget.NestedScrollView
android:layout_width="match_parent"
android:layout_height="match_parent"
android:fillViewport="true">
<LinearLayout
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="@color/mostLightGray"
android:orientation="vertical">
//A couple of TextViews and ImageViews
<android.support.v7.widget.RecyclerView
android:id="@+id/services_recycler_view"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:clipToPadding="false"
android:visibility="visible"
app:layout_behavior="@string/appbar_scrolling_view_behavior"
tools:listitem="@layout/item_mobile_service"
tools:layout_editor_absoluteY="8dp" />
</LinearLayout>
</android.support.v4.widget.NestedScrollView>
</android.support.v4.widget.SwipeRefreshLayout>
实现非常简单,在 OnRefresh 方法中,我从API获得了一组新结果,我从recyclerview中删除了所有元素(大约30-35),然后再添加30或类似的元素,最后调用适配器的 notifiyDataSetChanged 方法。
执行此操作时,我会遇到以下行为:如果用户滑动以刷新并保持recyclerview不变(即在滚动位置0),则元素将按预期刷新,并且一切正常。但是,如果在获得响应的同时用户向下滚动了一下,则当reclyclerview重绘其新元素时,滚动位置会将其自身设置为列表中间的随机位置。
我不知道是什么原因造成的,所以我尝试手动设置滚动位置,但是它只是被忽略了。这根本不起作用:
mAdapter.setData(response);
mAdapter.notifyDataSetChanged();
mRecyclerView.smoothScrollToPosition(0);