2

I've the following problem: When I exclude from stack of recents through AndroidManifest.xml in only one activity, all my activities are excluded from recents.

How can I exclude from the stack of recents only one of these activities?

jarlh
  • 42,561
  • 8
  • 45
  • 63

1 Answers1

2

If you want to "remove" (exclude) the Activity from the recents stack —I think is what you want— you can add android:excludeFromRecents="true" into the Activity definition (AndroidManifest.xml) as follow:

<activity
  android:name=".ActivityWithoutRecents"
  android:label="@string/WithoutRecents"
  android:excludeFromRecents="true"/>

For me is the easiest way to do that (and the cleanest). This should work, hiding from the pile of recents the specified activity.

tomloprod
  • 7,472
  • 6
  • 48
  • 66