私はログインアプリケーションを作成しました。しかし、間違ったパスワードを入力すると、パスワードが間違っているという通知は表示されず、コードを入力しなくても済みます。私はそれを達成するために何を入れるべきかわかりません。私はここで初心者です。助けてください。 Toast
notificationを表示するパスワード確認のヘルプ
if(passwordEditText.getText().toString().equals(password)) //checking if they put the right password?
{
StartMain(); //I assume this is starting the application
}
else
{
//Tell them the password was wrong.
}
penov:ありがとう! – sean