我尝试了下面的代码,但它没有用。
此代码应检查EditText的内容,当密码与字符串realpass的值相同时,它应该启动secactivity
Activity。
public void passthrought() {
EditText passview = (EditText)findViewById(R.id.editText);
String compare = passview.getText().toString();
String realpass = "3402";
if (compare == realpass) {
Intent intent = new Intent(this, secactivity.class);
startActivity(intent);
} else passthrought();
}
提前致谢
答案 0 :(得分:0)
两个问题:
==
进行比较,请使用.equals()
作为EditText
中的文本发生更改时检查密码。您可以使用TextWatcher
。有关示例,请参阅here。