The app has 2 tasks of activities:
- TASK 1
Activity
A (launcher)Activity
B
- TASK 2
Activity
C <---- that's where the stack points at in the example.
Now try that:
- Go to the recent apps carrousel (you know by clicking the button on the right of the Home button in newer phones).
- Swipe all the apps out.
- Your application is killed and a new
Application
instance is created (Application#onCreate()
is called). - Android tries to show the Activity C of the TASK 2.
The funny thing is that if you're here:
- TASK 1
Activity
A (launcher)Activity
B <---- here
...and you do repeat the scenario, your application is killed and android goes back to the Home screen as I think it should.
In short, it looks like Android does not clear all the tasks when killing the application. This is only true in that very precise scenario. Go to Settings > Applications > Your App > Force Stop, and you will see that it does clear all the tasks.
Anything we can do to force Android to kill all the tasks when killing the application?
After looking at how the recent apps are handled on the Android SDK (see source here line 135 http://grepcode.com/file/repository.grepcode.com/java/ext/com.google.android/android/4.0.1_r1/com/android/systemui/recent/RecentTasksLoader.java?av=f#135)
I understood (and tested) that if you provide
Activity
C with an icon and a label as such:You will see 2 apps (tasks really) in the recent apps carrousel.
Now I'm thinking that for my use case I should not use different tasks because it's almost seen as another app from Android's standpoint.