I have a set of some activities which co-ordinate with each other to complete some transaction..
After the transaction is complete I am redirected to the first activity again for a new transaction...
what I want is after completing of the transaction..when I am redirected to first activity, the app should close when I press the back key
, i.e, I don't want to see the previous transaction and it should appear like the application has just started..
What should be done for that???
Also I don't want to finish()
the activities when the transaction is going on....After the completion of transaction only all the activities from previous transaction should be killed...
And Also startActivityForResult()
is not going to solve my problem.
Suggest your answers please..