gpt4 book ai didi

android - 出现错误警告时隐藏 passwordToggleEnable

转载 作者:行者123 更新时间:2023-11-29 01:08:36 25 4
gpt4 key购买 nike

我们能否在用户收到警告错误时暂时隐藏 passwordToggle,并在用户用一些数据填充 EditText 时将其显示回来,看这张图片

pic 1pic 2

如果我试过这个

if (etPassNow.length() == 0){
etPassNow.setError("No data");
textInputLayout.setPasswordVisibilityToggleEnabled(false);
}

那么结果是这样的

pic3 ,但这就是我想要的pic4错误警告上方有图标错误,

有没有人遇到过这个问题?谢谢

这是我的xml

<android.support.design.widget.TextInputLayout
android:id="@+id/ti_new_pass"
android:layout_width="250dp"
android:layout_height="50dp"
android:layout_gravity="center"
app:passwordToggleEnabled="true">
<android.support.design.widget.TextInputEditText
android:id="@+id/et_new_pass"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:hint="Kata Sandi Baru"
android:imeOptions="actionDone"
android:inputType="textPassword"
android:paddingBottom="25dp"
android:paddingStart="30dp"
android:singleLine="true"
android:textColor="@color/dc_gray"
android:textSize="16sp"/>
</android.support.design.widget.TextInputLayout>

最佳答案

上面使用的方法已被弃用,因此不再使用,因此我们必须使用新方法

passwordTxtInputLayout = findViewById(R.id.text_input_layout_password);
etPassword = findViewById(R.id.login_password);
if (etPassword != null) {
etPassword.addTextChangedListener(new TextWatcher() {
@Override
public void beforeTextChanged(CharSequence s, int start, int count, int after) {


}

@Override
public void onTextChanged(CharSequence s, int start, int before, int count) {
passwordTxtInputLayout.setEndIconVisible(true);

}

@Override
public void afterTextChanged(Editable s) {

}
});

并在密码长度小于等于零时调用此函数

passwordTxtInputLayout.setEndIconVisible(false);

确保在调用 setError 之前调用此函数,否则 eyeIcon 将被禁用。

关于android - 出现错误警告时隐藏 passwordToggleEnable,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/45142090/

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