0

Currently building an Android app and utilizing AsyncTaskLoader. My app contains a ListView of articles that I obtain using JSON calls. It will leave and go somewhere else (in my case the browser) when the user clicks on an item, but when I press back it reloads the Loader. How can set it up to not reload? Thank you!

nono_exe
  • 23
  • 5

1 Answers1

0

use

     cancelLoadInBackground()

Method of AsyncTaskLoader class.

Keyur Thumar
  • 608
  • 7
  • 19