gpt4 book ai didi

android - 移除 Android N 中的显示密码图标

转载 作者:IT老高 更新时间:2023-10-28 21:57:44 27 4
gpt4 key购买 nike

当我在 EditText View 中设置 android:inputType="textPassword" 时,新的 Android 版本会自动绘制显示密码图标。我怎样才能禁用它?谢谢

enter image description here

最佳答案

使用setPasswordVisibilityToggleEnabled方法删除密码图标(或眼睛图标)或与 app:passwordToggleEnabled通过 XML。

有关详细信息,请参阅 support library revisions .

例子:

<android.support.design.widget.TextInputLayout
android:id="@+id/new_password_layout"
android:layout_width="match_parent"
android:layout_height="wrap_content"
app:errorEnabled="true"
app:passwordToggleEnabled="false">

<EditText
android:id="@+id/password_edit"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:hint="@string/new_password"
android:imeOptions="actionNext"
android:inputType="textPassword"
android:singleLine="true"/>

</android.support.design.widget.TextInputLayout>

关于android - 移除 Android N 中的显示密码图标,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/39019675/

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