I'm working with Android Lollipop Transitions, and I've sumbled upon the following problem:
- I have
CardView
with anImageView
and, on top of it, aTextView
. - When I click on the card, a new Activity is launched, and it contains both the
ImageView
and theTextView
in different positions. - If I don't include the
TextView
in theTransition
as 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
ImageView
Transition
, which is a combination of aChangeBounds
Transition
, aChangeImageTransform
, ... among others).
So, anybody knows how to have different transitions being thrown for different shared views when launching the new Activity
?
Cheers