RohitK
RohitK

Reputation: 1494

How do continue downloading file when user press home button in Android using Volley library

I am trying to download video from server using Volley library in Android. I am able to download the file if application is in foreground during downloading using Volley library.

I want to continue downloading using volley library when user press home button or switch to another application.

Upvotes: 0

Views: 112

Answers (1)

BaptisteM
BaptisteM

Reputation: 155

You should do your downloading in an IntentService.

A link to the official documentation : https://developer.android.com/reference/android/app/IntentService.html

Upvotes: 1

Related Questions