I have two activities A & B. I have implemented Loaders in both activities as I will be needing same data in both activities.
onCreateLoader()
method of both activities will be called every time or just at the time of loader creation ?
Example : If Activity "A" is called and loader is created then same loader will be exist in memory and when activity "B" is called, It will reuse the same loader but onCreateLoader()
of activity "B" will be called ?