I have an application with a TabActivity containing ActivityGroup. Each tabs works fine, but for one specific tab I want to go back to the first child activity when there's a click on it (whenever we are in a child activity of this tab or inside another tab).
I tried to start the activity that I want on the onResume of my ActivityGroup, it works when I'm on another tab, but not when I'm on this tab, with a child activity.
Do I have to use another intent flag than FLAG_ACTIVITY_CLEAR_TOP for this tab ? Does anyone have a clue ?
Thanks.