TextInputLayout中的endIconMode

时间:2019-07-12 05:03:01

标签: android kotlin android-textinputlayout android-textinputedittext

我正在使用TextInputLayout和TextInputEditText内部。 我在TextInputLayout中使用了app:endIconMode,然后距提示和基线的距离比以前大,如何获取此距离? 这是我的代码:

  <com.google.android.material.textfield.TextInputLayout
                app:endIconMode="clear_text"
                android:layout_width="match_parent"
                android:layout_height="wrap_content"
                android:background="@color/white"
                android:hint="@string/hint_phon_number">

                <com.google.android.material.textfield.TextInputEditText
                    android:layout_width="match_parent"
                    android:layout_height="wrap_content"
                    android:background="@color/white"
                    android:inputType="phone"
                    android:maxLength="17"
                    android:textColor="#FF192331" />

            </com.google.android.material.textfield.TextInputLayout>

1 个答案:

答案 0 :(得分:1)

这是因为,我使用此项目资料库,然后出现此错误,当我删除导入该库时,一切都很好