Android SDK:setPasswordVisibilityToggleEnabled(boolean) is deprecated 如何解决?
Android SDK: how to solve setPasswordVisibilityToggleEnabled(boolean) is deprecated?
我在更新 android 版本时遇到问题。
setPasswordVisibilityToggleEnabled(boolean)' is deprecated
我希望我的登录视图 在 TextInputLayout.
中切换隐藏和显示密码切换图标
但是,我该如何使用而不是使用 setPasswordVisibilityToggleEnabled(boolean)
?
我也在 Google 上搜索了这个,我发现 他们建议我改用 setEndIconDrawable(int)
。
但是不知道怎么用?
我也找到了这个 How to switch between hide and view password 但是我不想使用这个代码。
有没有其他方法可以这样发展?
谢谢大家!
您应该改用:
textInputLayout.setEndIconMode(TextInputLayout.END_ICON_PASSWORD_TOGGLE)
https://developer.android.com/reference/com/google/android/material/textfield/TextInputLayout#getEndIconMode()在这里你可以看到关于隐藏/显示文本的新方法的信息
我在更新 android 版本时遇到问题。
setPasswordVisibilityToggleEnabled(boolean)' is deprecated
我希望我的登录视图 在 TextInputLayout.
中切换隐藏和显示密码切换图标但是,我该如何使用而不是使用 setPasswordVisibilityToggleEnabled(boolean)
?
我也在 Google 上搜索了这个,我发现 他们建议我改用 setEndIconDrawable(int)
。
但是不知道怎么用?
我也找到了这个 How to switch between hide and view password 但是我不想使用这个代码。
有没有其他方法可以这样发展? 谢谢大家!
您应该改用:
textInputLayout.setEndIconMode(TextInputLayout.END_ICON_PASSWORD_TOGGLE)
https://developer.android.com/reference/com/google/android/material/textfield/TextInputLayout#getEndIconMode()在这里你可以看到关于隐藏/显示文本的新方法的信息