在我的代码中,我想检查密码字段is empty
。我使用isEmpty()
方法来完成它,但它不起作用。将password
字段留空,将恢复为第二个else-if语句,而不是第三个。
public class MainActivity extends Activity {
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
final EditText password = (EditText) findViewById(R.id.editText_Password);
Button enter = (Button) findViewById(R.id.button);
enter.setOnClickListener(new OnClickListener() {
@Override
public void onClick(View arg0) {
String user_pass;
user_pass = password.getText().toString();
if (user_pass.equals("123")) {
Toast.makeText(MainActivity.this, "Welcome!", Toast.LENGTH_SHORT).show();
Intent I = new Intent("com.mavenmaverick.password.OKActivity");
startActivity(I);
}
else
if(user_pass != "123"){
Toast.makeText(MainActivity.this, "Incorrect", Toast.LENGTH_SHORT).show();
AlertDialog.Builder dialogBuilder = new AlertDialog.Builder(MainActivity.this);
dialogBuilder.setIcon(R.drawable.ic_launcher);
dialogBuilder.setTitle("Oops!");
dialogBuilder.setMessage("Incorrect Password");
dialogBuilder.setPositiveButton("OK", null);
dialogBuilder.show();
}
else
if (user_pass.isEmpty()) {
AlertDialog.Builder dialogBuilder = new AlertDialog.Builder(MainActivity.this);
dialogBuilder.setIcon(R.drawable.ic_launcher);
dialogBuilder.setTitle("Oops!");
dialogBuilder.setMessage("Password Field Cannot Be Empty");
dialogBuilder.setPositiveButton("OK", null);
dialogBuilder.show();
}
}
});
}
答案 0 :(得分:0)
if (string == "aString") {
...
} else if (string != "somestring") {
...
} else if (string.isEmpty()) {
...
}
这不会检查字符串是否为空,它将在第2个if块上停止,因为它不相等。
为避免这种情况,请先检查它是否为空。在比较字符串值时,不要使用==
:
if (user_pass.isEmpty()) {
// It's empty
} else if (user_pass.equals("123")) {
// Equals
} else if (!user_pass.equals("123")){
// Not equals
}
答案 1 :(得分:0)
与运营商进行错误的字符串比较。对于字符串比较,您可以使用.equals()
方法。
顺便提一句,
只需使用,
if (user_pass.isEmpty()) {
displayAlertDialog("Password Field Cannot Be Empty");
}else if(user_pass.equals("123"))
{
Toast.makeText(MainActivity.this, "Welcome!", Toast.LENGTH_SHORT).show();
Intent I = new Intent("com.mavenmaverick.password.OKActivity");
startActivity(I);
}else
{
Toast.makeText(MainActivity.this, "Incorrect", Toast.LENGTH_SHORT).show();
displayAlertDialog("Incorrect Password");
}
private void displayAlertDialog(String message)
{
AlertDialog.Builder dialogBuilder = new AlertDialog.Builder(MainActivity.this);
dialogBuilder.setIcon(R.drawable.ic_launcher);
dialogBuilder.setTitle("Oops!");
dialogBuilder.setMessage(message);
dialogBuilder.setPositiveButton("OK", null);
dialogBuilder.show();
}
答案 2 :(得分:0)
if(user_pass!=" 123"){
您正在直接检查 memoy位置,该位置始终为 false 。
使用 if(!user_pass.equals(" 123")){而不是。
答案 3 :(得分:-1)
第二次检查user_pass != "123"
。从逻辑上讲,如果user_pass
为空,则不是"123"
,它甚至不会去第三个if。如果你希望它工作,请切换你的第二个和第三个。