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
Both ActivityRecreationHelper and auto activity restart via onResume fails to recreate activity if launchMode is declared as SingleTop
android:launchMode="singleTop"
This is because we are starting activity while the old one is still ongoing.
A simple fix would be finishing activity first before starting the new one.
ex
in ActivityRecreationHelper
Both
ActivityRecreationHelper
and auto activity restart viaonResume
fails to recreate activity if launchMode is declared asSingleTop
This is because we are starting activity while the old one is still ongoing.
A simple fix would be finishing activity first before starting the new one.
ex
in
ActivityRecreationHelper
The text was updated successfully, but these errors were encountered: