I'm working with Android Lollipop Transitions, and I've sumbled upon the following problem:
- I have
CardViewwith anImageViewand, on top of it, aTextView. - When I click on the card, a new Activity is launched, and it contains both the
ImageViewand theTextViewin different positions. - If I don't include the
TextViewin theTransitionas a shared element, it suddenly dissapears [goes behind] theImageView, which doesn't look, well, great. - If I include it, it doesn't scale the text nicely and suddenly changes to the final size (I am aware of this solution already, but the problem is I want to keep also the default
ImageViewTransition, which is a combination of aChangeBoundsTransition, aChangeImageTransform, ... among others).
So, anybody knows how to have different transitions being thrown for different shared views when launching the new Activity?
Cheers