I have an application in which i want to navigate this way:
A -> B -> C
And from C launch a new activity called D, that goes to top and also clears the task, meaning that if i press back on D it goes to home screen.
If i understand it correctly this FLAG: FLAG_ACTIVITY_TASK_ON_HOME does this... but it's only on current APIs (11>).
I'm developing for Android 1.5> how can i also have this behaviour?
Thanks!