字母密码不起作用

时间:2015-09-22 12:37:53

标签: android passwords numbers

我在Android开发中面临一个问题,其中密码号码(6823969093)工作正常,但密码字母(helloworld或hello34world)不起作用。

由于

final EditText editTextemail = (EditText) findViewById(R.id.editEmail);
    final EditText editTextpassword = (EditText) findViewById(R.id.editPassword);
    Button buttonSubmit = (Button) findViewById(R.id.btnSubmit);
    final CheckBox showPasswordCheckBox = (CheckBox) findViewById(R.id.checkBox);
    showPasswordCheckBox.setOnClickListener(new View.OnClickListener() {
        @Override
        public void onClick(View view) {
            if (showPasswordCheckBox.isChecked()){
                editTextpassword.setTransformationMethod(null);
            }else{
                editTextpassword.setTransformationMethod(new PasswordTransformationMethod());
            }
        }
    });
    buttonSubmit.setOnClickListener(new View.OnClickListener() {
        @Override
        public void onClick(View v) {
            email = editTextemail.getText().toString();
            password = editTextpassword.getText().toString();
            handler = new DBHandler(getBaseContext());
            handler.open();
            handler.addLogIn(email, password);
            handler.close();
            finish();
        }
    });

1 个答案:

答案 0 :(得分:0)

enter image description here

步骤1]转到密码字段的编辑文本属性。

第2步]选择您的密码模式或从输入类型过滤。