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
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.
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.