TextInputLayout
Android デザイン ライブラリの新しいものを使用しています。
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>