SwipeRefreshLayout no animation on fragment creation

前端 未结 5 2152
感情败类
感情败类 2021-01-05 03:58

I\'m using android.support.v4.widget.SwipeRefreshLayout with android.support.v7.widget.RecyclerView.
On fragment view creation I need to show <

5条回答
  •  梦谈多话
    2021-01-05 04:07

    This is a reported bug (reported here) and a workaround is available:

    mSwipeRefreshLayout.setProgressViewOffset(false, 0,
        (int) TypedValue.applyDimension(
            TypedValue.COMPLEX_UNIT_DIP, 
            24, 
            getResources().getDisplayMetrics()));
    mSwipeRefreshLayout.setRefreshing(true);
    

提交回复
热议问题