我想知道是否有办法检测TextInputLayout上的提示动画结束?
我创建了一个自定义的EditText组件(见下文),我的目标是当TextInputLayout的提示位于输入的顶部时(当动画结束时)显示editText上的提示
<android.support.design.widget.TextInputLayout
android:id="@+id/text_input_layout"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:hint="@string/my_text_input_layout_hint">
<MyTextInputEditText
android:id="@+id/edit_text"
android:hint="@string/my_edit_text_hint_to_display_later"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:textSize="18sp"
android:inputType="text"/>
</android.support.design.widget.TextInputLayout>
如何检测动画结束?或者有人知道这个动画的持续时间吗?
我还尝试在editText上设置提示的“幻影”,但没有成功,它似乎仅适用于带有Objectanimation的textViews。
先谢谢你的帮助!