gpt4 book ai didi

android - 对话框中的Android高亮错误字段

转载 作者:行者123 更新时间:2023-12-03 08:50:52 25 4
gpt4 key购买 nike

由于某种原因,设置了对话框中EditText 的 setError,但是未突出显示该字段。对话框被加载为单独的 View 。

XML:

 <?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent" android:layout_height="match_parent">

<TextView
android:paddingLeft="16dp"
android:id="@+id/pwdtext"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="@string/pwd_text"
android:textSize="16dp"
android:layout_centerHorizontal="true"/>
<EditText
android:paddingLeft="16dp"
android:id="@+id/login"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_below="@id/pwdtext"
android:hint="@string/login">
<requestFocus/>
</EditText>
<EditText
android:paddingLeft="16dp"
android:id="@+id/pwd"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_below="@id/login"
android:hint="@string/pwd"/>
</RelativeLayout>

这是对话框
调用。 Onclick侦听器效果很好。通过调试器,两个字段的 double-checked and getError() 都返回正确的值,但是没有一个字段被突出显示。对话框也关闭了,但是我猜这不应该在字段有错误时出现:
private void showAlert(){
LayoutInflater inflater = LayoutInflater.from(context);
final View promptView = inflater.inflate(R.layout.auth_prompt,null);
AlertDialog.Builder dialogBuilder = new AlertDialog.Builder(context);
dialogBuilder.setView(promptView);
dialogBuilder.setCancelable(true);
dialogBuilder.setPositiveButton("OK" , new DialogInterface.OnClickListener() {
@Override
public void onClick(DialogInterface dialogInterface, int i) {
EditText login = (EditText) ((AlertDialog) dialogInterface).findViewById(R.id.login);
EditText pwd = (EditText) ((AlertDialog) dialogInterface).findViewById(R.id.pwd);
//For simultaneous validation
List<EditText> fields = new ArrayList<>();
fields.add(login);
fields.add(pwd);
for(EditText field: fields){
//Avoiding double checks on null+""
String text = null;
try{
text = field.getText().toString().trim();
}catch (RuntimeException e){
text="";
}
if("".equals(text)){
field.setError("Please fill in the field");
((AlertDialog) dialogInterface).show();
}
}
}
});
dialogBuilder.setNegativeButton("Cancel", new DialogInterface.OnClickListener(){

@Override
public void onClick(DialogInterface dialogInterface, int i) {
LOG.info("CANCEL Clicked");
dialogInterface.cancel();
}
});
AlertDialog dialog = dialogBuilder.create();
dialog.show();
}

非常感谢您的帮助。

最佳答案

导致在对话框之前创建侦听器。这里完整描述:
How to prevent a dialog from closing when a button is clicked

关于android - 对话框中的Android高亮错误字段,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/41097315/

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