gpt4 book ai didi

android - 密码切换图标 textinputlayout 覆盖错误图标

转载 作者:行者123 更新时间:2023-12-05 00:09:10 26 4
gpt4 key购买 nike

我正在使用密码切换来显示和隐藏密码。而且我不想使用自定义可绘制对象。但是,当此编辑文本生成错误时,它会覆盖切换密码图标并且无法向该图标添加填充或边距。如果有任何解决方案,那将是一种乐趣。
这是我正在使用的代码:

       <com.google.android.material.textfield.TextInputLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginTop="10dp"
android:textColorHint="@color/white"
app:passwordToggleEnabled="true"
app:passwordToggleTint="@color/white">

<EditText
android:id="@+id/et_password"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:backgroundTint="@color/white"
android:hint="@string/password"
android:imeOptions="actionDone"
android:inputType="textPassword"
android:maxLength="40"
android:maxLines="1"
android:textColor="@color/white"
android:textColorHint="@color/app_green_color" />

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

最佳答案

使用 TextInputEditText而不是 EditText .

  <com.google.android.material.textfield.TextInputLayout
app:endIconMode="password_toggle"
app:endIconTint="@color/white"
...>

<com.google.android.material.textfield.TextInputEditText
android:inputType="textPassword"
../>

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

此外(但与问题无关)属性 app:passwordToggleEnabled="true"app:passwordToggleTint="@color/white"现在已弃用。使用 app:endIconMode app:endIconTint .

关于android - 密码切换图标 textinputlayout 覆盖错误图标,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/60040796/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com