4

我正在使用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>
4

2 回答 2

5

从 22.2.1 开始,此问题已修复,请更新您的 Android SDK。

于 2015-07-19T15:39:25.883 回答
1

我的 SDK 已更新,因此接受的答案对我不起作用。

在我的情况下,解决方法是设置自定义样式或覆盖一些道具:

为 和 android:textColorHint赋予颜色值app:boxStrokeColorapp:hintTextColor

<com.google.android.material.textfield.TextInputLayout
    android:id="@+id/input_layout"
    style="@style/Widget.MaterialComponents.TextInputLayout.OutlinedBox"
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:hint="Edit Text"
    android:textColorHint="@color/some_color"
    app:boxStrokeColor="@color/some_color"
    app:hintTextColor="@color/some_color"
    app:layout_constraintEnd_toEndOf="parent"
    app:layout_constraintStart_toStartOf="parent"
    app:layout_constraintTop_toTopOf="parent">

    <com.google.android.material.textfield.TextInputEditText
        android:id="@+id/input_edit_text"
        android:layout_width="match_parent"
        android:layout_height="wrap_content" />

</com.google.android.material.textfield.TextInputLayout>
于 2021-04-23T13:50:30.807 回答