In my application,I have four tabs at the bottom.Each tab has multiple activities.In order to maintain multiple activities in a single tab I used concept of TabGroupActivity.My question is ,when I click on a particular tab ,its starting activity has to be restarted while some child activity of that Tab is in onResume() state.For clear understanding,
Tab1-A-->B-->C-->D-->E.
Tab2-M-->N-->B-->C-->D-->E.
Tab3-P.
Tab4-X-->Y-->B-->C-->D-->E.
when I press on Tab1,A activity has to be restarted while one of the B or C or D or E activities are in onresume() state.likewise,the same for the Tab2,Tab4 has to be done.can some one please provide me with sample code as I am a fresher.Thanks in advance.
I found the solution for my question,I just override the onResume() method in TabGorupActivity.
My TabGroupActivity is