Skip to main content
Participating Frequently
May 28, 2014
Question

Activity attribute excludeFromRecents="true" does nothing

  • May 28, 2014
  • 0 replies
  • 1010 views

I want my app to be excluded from the recent list on Android, but the attribute responsible for that seems doesn't work at all.

Nothing changes if I add it.

            <activity android:name=".AppEntry" android:excludeFromRecents="true">

                <intent-filter>

                    <action android:name="android.intent.action.MAIN"/>

                    <action android:name="android.intent.action.VIEW" />

                    <category android:name="android.intent.category.LAUNCHER"/>

                    <category android:name="android.intent.category.DEFAULT" />

                    <category android:name="android.intent.category.BROWSABLE"/>

                    <data android:scheme="params" android:host="*" android:mimeType="text/*"/>

                    <!--<data android:mimeType="text/plain" />-->

                </intent-filter>

            </activity>

Regards.

This topic has been closed for replies.