TextInputLayoutAndroid デザイン ライブラリの新しいものを使用しています。
EditTextがフォーカスされると、すべて問題なく、上にヒントが表示されますEditText。

しかし、EditTextフォーカスが失われると、ヒントは完全に消えます。

ヒントが に戻るとEditText思いますが、何が欠けていますか?
以下のxmlコード。
<LinearLayout
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical"
android:padding="20dp">
<android.support.design.widget.TextInputLayout
android:layout_width="match_parent"
android:layout_height="wrap_content">
<EditText
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:hint="Try me!"/>
</android.support.design.widget.TextInputLayout>
<EditText
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_margin="10dp"
android:hint="Try me 2"/>
</LinearLayout>