B4A Question Exclude from recents programatically - plager (first post)    Aug 21, 2024 Thank you for your answer, Erel. Will try to do it as you suggested.... B4A Question Invoking The 'Recent Apps' Screen In Code - LucaMs (first post)    Jan 3, 2022 .FLAG_ACTIVITY_EXCLUDE_FROM_RECENTS);
intent.setComponent(new ComponentName("com.android.systemui", "com.android... FLAG_ACTIVITY_NEW_TASK As Int = 268435456
Private Const FLAG_ACTIVITY_EXCLUDE_FROM_RECENTS As Int = 8388608
My....ACTION_MAIN, "")
Intnt.Flags = Bit.Or(FLAG_ACTIVITY_NEW_TASK, FLAG_ACTIVITY_EXCLUDE_FROM_RECENTS... B4A Question Intent Set & Add Flags - George_G    Feb 22, 2024 Hello everyone. I want add these two lines in my code. lvIntent.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK); lvIntent.addFlags(Intent.FLAG_ACTIVITY_EXCLUDE_FROM_RECENTS); Is there anyway to do it? Thank you in advance.... B4A Question Application does not appear in the Task List - Erel (first post)    Oct 7, 2021 Remove this line: SetActivityAttribute(Main, "android:excludeFromRecents", "true")... B4A Question How to make the notification list appear and disappear - from code program? - drgottjr (first post)    Oct 2, 2021 although the overview screen is controlled by the os (apps are automatically added/removed from the list), it is possible for you to make some adjustments. for example from: https://developer.android.com/guide/components/activities/recents You can always exclude a task from the Recents screen entirely by setting the <activity> attribute, android:excludeFromRecents to true. i am confused by your question, however. so i can't add more at this time.... B4A Question Close app completely..totally so it doesn't stay in the list of suspended apps - Erel (first post)    May 7, 2020   (3 reactions) Add this to the manifest editor: SetActivityAttribute(Main, "android:excludeFromRecents", "true") ... B4A Question play music without stopping - Semen Matusovskiy (first post)    Oct 15, 2018   (1 reaction) You can remove an application from recent list by adding into manifest SetActivityAttribute (Main, android:excludeFromRecents, "true") ... B4A Question Custom icon in recent list - Eldritch    Oct 17, 2019 Hi
I'm working on an app where the content is not something that should be shown in the recent app list.
I've tried SetActivityAttribute(Main, "android:excludeFromRecents", "true") in the manifest and this removes the apps icon in the list. Unfortunately this also kills the app every time I swap to another app. This does not happen when the excludefrom recent is not... B4A Tutorial The result of swiping an app from the recent apps list - Erel    Dec 21, 2021   (8 reactions) One of the new features of Android 4 is the more powerful recent apps list. The user can remove tasks or applications from the list with a swipe gesture. The result of this action is not fully documented. So I ran some tests and these are the findings: As expected the activities are destroyed. What happens with the running services is a bit more complicated: - Any "standard" services are destroyed. Note that Service_Destroy is not called. - Sticky services are destroyed and... B4A Question Closing an App - elitevenkat (first post)    May 20, 2018   (2 reactions) Add this to the manifest.
SetActivityAttribute(Main, "android:excludeFromRecents", "true")
works perfectly thanks a lot... Page: 1   2   3   4   5   6   7   |