From my activity, I start a new Activity by defining an Intent for it. Then I start the new Activity.
Now suppose in method A this happens :
A {
/*
*
*
*/
startActivity(i); // where i is the intent for new Acivity
/*
*
*
*/
}
Now what happens is that statements after start activity are executed even before i starts. I want when I start 'i', the current class pauses the 'i' starts , and afte 'i' finishes, this class resumes from that point ?
Is it possible to do this ?