Maksym
Maksym

Reputation: 116

SwipeRefreshLayout no animation on fragment creation

I'm using android.support.v4.widget.SwipeRefreshLayout with android.support.v7.widget.RecyclerView.
On fragment view creation I need to show SwipeRefreshLayout animation. But when I call setRefreshing(true) nothing happens. But when I refresh data animation changes.
I suppose that the animation isn't showing without child inside SwipeRefreshLayout.
How to show this animation in the best way?

Upvotes: 8

Views: 5116

Answers (5)

Spark.Bao
Spark.Bao

Reputation: 5743

you must call setRefreshing(true) after onDraw(), else it would not display animation.

so, in Activity, you can do it in onCreate(), like this:

@Override
protected void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);

    // other codes

    new Handler().post(new Runnable() {
        @Override
        public void run() {
            swipeRefreshLayout.setRefreshing(true);
            refreshing = true;
            refreshData();
        }
    }
}

in fragment, you can put these codes in onActivityCreated().

Upvotes: 0

Tadas Šubonis
Tadas Šubonis

Reputation: 1600

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);

Upvotes: 10

Maksym
Maksym

Reputation: 116

Thanks, guys.

I`ve just realised that the easiest solution is to call method measure(int, int) with non-zero values) before calling setRefreshing(true). The problem is happening because setRefreshing(true) is calling before onMeasure.

So you need to call:

swipeRefreshLayout.measure(initialWidth, initialHeight);
swipeRefreshLayout.setRefreshing(true);

Upvotes: 2

Phil A
Phil A

Reputation: 97

It depends on which API level you're building under - if you're using up to API 20 then you can just turn on setRefreshing(true), this will run the animation in the ActionBar, but in API 21 (Material Design) they changed the progress to be a spinner than is "pulled into view" before it spins

You have 2 ways of getting around this in API 21: 1) shift the spinner down with setProgressViewOffset(), but remember to shift it back up afterwords (note that this works in px, while setDistanceToTriggerSync() uses dp) 2) make a duplicate spinner that is displayed when you're loading the data

The more code-efficient solution is to use the existing spinner, but you have to be careful that you do reset its position

If you need to calculate the pixel density, you can grab it from:

DisplayMetrics metrics = new DisplayMetrics();
activity.getWindowManager().getDefaultDisplay().getMetrics(metrics);
float scale = metrics.density;

Upvotes: 2

Mike
Mike

Reputation: 4570

SwipeRefreshLayout must contain a child to work properly. Make sure you initialize it before using it anywhere!

Upvotes: 1

Related Questions