In my app I'm using the Android Activity Slide transition. I followed a nice tutorial and everything works as expected except for the hint of my EditText
, which is contained within an InputTextLayout
:
<android.support.design.widget.TextInputLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_margin="@dimen/activity_vertical_margin">
<EditText
android:layout_width="match_parent"
android:layout_height="match_parent"
android:hint="Your name"/>
</android.support.design.widget.TextInputLayout>
All the components are nicely animated, but the hint just pops up before the animation starts and remains in the final position. Do I have to add some extra code to tell the framework to animate the hint, too?
According to the Android developer documentation it should work (or at least it's not unsupported).
I'm using version 22.2 of the Support Design Library.
It would be great if someone could point me in the right direction.