I have 3 activities in my application
- ActA
- ActB
- ActC
Suppose I am in activity ActB
and I am loading ActC
with out finish();
ActB
Then when press a button in ActC
, need to redirect the application to ActB
. But this time when I press back from redirected ActB
, another ActB
( previously loaded ) is showing.
Is there any way to kill all the activities which are previously loaded when we press the button in ActC
?
I am new to android and its ruining my time
Please help thanks in advance