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

Popular posts from this blog

sqlite3 - UPDATE a table from the SELECT of another one -

c# - Showing a SelectedItem's Property -

javascript - Render HTML after each iteration in loop -