I have implemented an AsyncTaskLoader passing a complex object not parcelable instantiated in the Activity. This object is loaded too by another loader.
My question: This object can leak the Activity when I rotate the device and the loader is not being restarted, just initiated? (onCreateLoader not called, just returned the object in onLoadFinished). And, if this is the case, how can I set this object in the AsyncTaskLoader?
Thanks in advance.