我有SwipeRefreshLayout像这样:
.XML:
<android.support.v4.widget.SwipeRefreshLayout xmlns:android="http://schemas.android.com/apk/res/android" android:id="@+id/swipe_refresh_layout" android:layout_width="match_parent" android:layout_height="wrap_content" > <android.support.v7.widget.RecyclerView android:id="@+id/haberRecyclerView" android:layout_width="match_parent" android:layout_height="match_parent" /> </android.support.v4.widget.SwipeRefreshLayout>
的.java:
private SwipeRefreshLayout swipeLayout; swipeLayout = (SwipeRefreshLayout) rootView.findViewById(R.id.swipe_refresh_layout); swipeLayout.setColorSchemeColors(getResources().getColor(R.color.primary_color)); swipeLayout.setOnRefreshListener(new OnRefreshListener() { @Override public void onRefresh() { refreshContent(); } });
这样我可以多次刷swipeRefresh,旋转动画变得很奇怪,有时它会保持在屏幕上,而不会旋转:
在第一次拉动时,它看起来有点位于顶部,在第二次拉动时,它像图像一样下降.
如何在SwipeRefresh已经刷新时禁用多重拉?
我想这不会发生在sdk 23下面.我正在使用buildTool 23,targetSdk 23,support-v4:23,appcompat-v7:23.
更新:如果我使用ListView而不是RecyclerView,则不会发生这种情况.