I wrote this code to set a password in AlertDialog
but when I click on the button to save the password, it does not check TextInputEditText
and the dialog is closed. What should I do? (my dialog run in first activity)
public class CreatePasswordActivity extends AppCompatActivity {
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_create_password);
LayoutInflater inflater = getLayoutInflater();
final View view = inflater.inflate(R.layout.password_dialog, null);
final TextInputEditText pass = view.findViewById(R.id.edt_password);
final TextInputEditText confPass = view.findViewById(R.id.edt_confirm_password);
final TextInputLayout passLayout = view.findViewById(R.id.password_layout);
final TextInputLayout confPassLayout = view.findViewById(R.id.confirm_password_layout);
new AlertDialog.Builder(this)
.setCancelable(false)
.setView(view)
.setPositiveButton("ثبت", new DialogInterface.OnClickListener() {
@Override
public void onClick(DialogInterface dialog, int which) {
pass.setOnFocusChangeListener(new View.OnFocusChangeListener() {
@Override
public void onFocusChange(View v, boolean hasFocus) {
if (pass.getText().toString().isEmpty()) {
passLayout.setError("رمز عبور را وارد كنيد");
} else {
passLayout.setErrorEnabled(false);
}
if (confPass.getText().toString().isEmpty()) {
confPassLayout.setError("رمز عبور را مجددا وارد كنيد");
} else {
confPassLayout.setErrorEnabled(false);
}
}
});
}
})
.show()
.create();
}
}
I am now giving a full implementation of the code
layout/dialog.xml (you can have your own UI)
MainActivity.java