Reputation: 16534
Is there a way to traverse the Activity or nav stack in android? In ios you have the navigationController.viewControllers collection which lets you go through each one and call methods on them etc. is there something similar to this in android?
Upvotes: 0
Views: 90
Reputation: 1006799
No, sorry, this is not supported. The "nav stack" in Android can contain activities from many different applications and processes.
Upvotes: 1