Gaurav Arora
Gaurav Arora

Reputation: 17274

Volley: Pause/Resume Download

I'm using a Volley for Loading Images. However, I want to pause Image Download on listview fling.

Is there a way to pause/resume Request Queue in Volley.

Thanks.

Upvotes: 2

Views: 1472

Answers (1)

oleg.semen
oleg.semen

Reputation: 3061

Volley's RequestQueue has methods start() and stop() so it hould be called in onScrollStateChanged() method in next way:

if (scrollState == AbsListView.OnScrollListener.SCROLL_STATE_FLING) {
    mRequestQueue.stop();
} else {
    mRequestQueue.start();
}

Upvotes: 3

Related Questions