You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I have looked at the extension org.dmfs.android.retentionmagic.Activity with the
@Retain
private Bundle mBundle1;
Does it means that the item Bundle has to use mBundle1 from the above layer class so for each Retain annotation has to use Bundle or some sort to put all the valuables into mBundle1 ?
The text was updated successfully, but these errors were encountered:
Means that the Bundle mBundle1 is restored after a destroy/create cycle when the instance state is kept, i.e. the activity is only "temporarily" destroyed.
This is merely an example that shows that it also works with Bundles, not only with primitive types or Strings.
I have looked at the extension
org.dmfs.android.retentionmagic.Activity
with theDoes it means that the item Bundle has to use
mBundle1
from the above layer class so for each Retain annotation has to use Bundle or some sort to put all the valuables intomBundle1
?The text was updated successfully, but these errors were encountered: