I\'m new to android. Actually one handler is running in Home Activity A for every 30 sec to check the net connection.
If I\'m went to activity C by A->B->C, If ther
You can use, According to me two ways,
If you start an activity using startActivityForResult, then you can call finish() in this new Activity when you're done with it and it will return control to the activity that started it.
OR otherwise, May be I am wrong,
Call finish inside onStop 'override method'.