From the developer guide on Loaders,
They automatically reconnect to the last loader's cursor when being recreated after a configuration change. Thus, they don't need to re-query their data.
From this blog post on Loaders,
when an Activity is destroyed, the Activity instructs its LoaderManager to destroy and close its Loaders (as well as any resources associated with them, such as a Cursor).
The question is that which one is correct? When an activity is destroyed because of a configuration change, what happens to (1) its Loaders (2) the resources associated with its Loaders, such as a Cursor
.