我正在尝试为我的 Android 应用程序创建一个登录页面。我有 2 个编辑视图和一个按钮。我正在使用静态用户凭据登录。当我运行该应用程序并尝试使用正确的用户名和密码登录时,它会提供不正确的凭据消息。
这是我的代码,这是一段非常简单的代码
public void sendMessage(View view) {
EditText user_name = (EditText)findViewById(R.id.txt_username);
EditText password =(EditText)findViewById(R.id.txt_password);
if(user_name.getText().toString()=="rotanet" && password.getText().toString()=="rotanet"){
Intent intent = new Intent(this, MainActivity.class);
startActivity(intent);
TextView lbl_error = (TextView)findViewById(R.id.lbl_error);
lbl_error.setText("");
}
else{
TextView lbl_error = (TextView)findViewById(R.id.lbl_error);
lbl_error.setText("wrong credentials!");
}
}