Android Question Incomplete download

devmobile

Active Member
Licensed User
I show list of data that downloaded from special url
This job can complete until user dont close activity
But if user exit from app(example press Home Button)
And again back to app,dont see list of data(in scrollview) because downloading dont be complete or if completed,dont show it in scrollview :confused::confused:
 

An Schi

Well-Known Member
Licensed User
You could do the download in a service which will keep on running when the user exits the app. When job.done save the data somewhere. In activity_start and/or _resume read the saved data and handle it.
 
Upvote 0

DonManfred

Expert
Licensed User
Longtime User
Upvote 0
Top