I'm porting an iPhone app to Android and I can't seem to find a means to pop each activity on the stack except the root activity.
In objective-c I would do something like the below
[navController popToRootViewControllerAnimated:YES];
Anyone know if I can effectively call "finish()" on each activity after some action?
finish()
on anActivity
once you're done with it. That will bring you back to whichever activity is before it in the stack. – Babism