我找到了一些答案
SwipeRefreshLayout refresh animation doesn't stop
加上一些其他问答,但是直到现在我还没有找到解决方案,即使我也不明白问题所在。
实际上,该类是pageAdapter
我的代码是
@Override
public Object instantiateItem(ViewGroup container, int position) {
View listView = LayoutInflater.from(container.getContext()).inflate(R.layout.fragment_common_list, container, false);
swipeView = (SwipeRefreshLayout) listView.findViewById(R.id.nfs);
swipeView.setColorSchemeResources(R.color.colorPrimary,
R.color.colorAccent,
R.color.yes,
R.color.no);
swipeView.setOnRefreshListener(new SwipeRefreshLayout.OnRefreshListener() {
@Override
public void onRefresh() {
(new Handler()).postDelayed(new Runnable() {
@Override
public void run() {
Log.d("SwipeView","Refrehing");
swipeView.setRefreshing(false);
Log.d("SwipeView ",swipeView.isRefreshing()+"");
}
}, 3000);
}
});
}
和我的 fragment_common_list 视图是
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:id="@+id/constraintLayout"
android:layout_width="match_parent"
android:layout_height="match_parent">
<android.support.v4.widget.SwipeRefreshLayout
android:id="@+id/nfs"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginTop="@dimen/tab_height">
<ListView
android:id="@+id/commonList"
android:layout_width="match_parent"
android:layout_height="wrap_content" />
</android.support.v4.widget.SwipeRefreshLayout>
答案 0 :(得分:2)
解决方案:
代替:
swipeView = (SwipeRefreshLayout) listView.findViewById(R.id.nfs);
写:
swipeView = (SwipeRefreshLayout) findViewById(R.id.nfs);
如果它是Activity
,请在onCreate();
中声明
如果它在Fragment
中,则在onCreateView()
中使用视图对象对其进行声明。
尝试一下,希望对您有所帮助。
答案 1 :(得分:0)
注意:这篇文章即将了解该问题,因此我不希望 为了获得表决权,一旦问题得到澄清,我将删除。
按如下所示更改您的代码,如果您仍然遇到相同的问题,请告诉我。
swipeView.setRefreshing(false);
swipeView.setOnRefreshListener(new SwipeRefreshLayout.OnRefreshListener() {
@Override
public void onRefresh() {
swipeView.setRefreshing(true);
loadItems();
}
});
private void loadItems() {
new Handler().postDelayed(new Runnable() {
@Override
public void run() {
swipeView.setRefreshing(false);
}
}, 3000);
}