android - Is it possible to apply CLEAR_TOP flag for activity in manifest? -
I have an activity that clears the top (clear = true), whenever that activity starts I intend to do now that I have to start the activity from everywhere and manually add the activity flag (xamarin.android syntax) to the intent:
intent.AddFlags (ActivityFlags.ClearTop) ;
Please keep this behavior in the manifest / attribute
Attribute Android: Launchmode = "SingleTop" for your Activity
More info
Comments
Post a Comment