Is parcelable data persistent? I have some variables that I destroy in android lifecycle functions such as onDestroy()
, but what about things written to parcelable?
Ultimately I would want to pass elements of my parcelable objects via intents, will they still be available after garbage collection (either java or dalvik's)?
thank you