If Activity
A
calls Activity B
with .setExtra(someKey, someValue)
, and Activity B
calls Activity C
, from which the user returns to Activity B
with the back button, can Activity B
still access the Extra
s from Activity A
?
A
A
->B
(withExtra
)A
->B
->C
back button pressedA
->B
(withExtra
?)
Is the Bundle
persisted or discarded in this scenario?
I could not find this in When do intent extras become null between activities? and Android Intent Extras Sticking Around