Before I started working with transitions in Android, I was under the impression that transitions was possible from one activity to another. In other words, when you launch an activity from another activity, you could provide a transition with animation.
After just learning about transitions, this does not appear possible. The documentation indicates that transitions occur within the same activity. In other words, transitions just let you rearrange the view for the current activity.
So is it correct that transitions are limited to just a specific activity, or is it possible to transition to another activity? I can imagine the benefits of transitioning to a different activity, the most important being that when multiple developers are working on a project, each can work on their own activities without having to combine functionality into a single activity in order to create animated transitions.