I want to send some data from activity A to activity B ONLY in case I have entered some values in activity A. So, in A I have
Intent i = new Intent(A.this, B.class);
i.putExtra("email", email);
i.putExtra("password", password);
startActivity(i);
In B:
EditText login = (EditText) findViewById(R.id.login);
EditText password = (EditText) findViewById(R.id.password);
if(!(getIntent().getExtras().getString("email").isEmpty())){
emailText = getIntent().getExtras().getString("email");
login.setText(emailText);
if(!(getIntent().getExtras().getString("password").isEmpty())){
passwordText = getIntent().getExtras().getString("password");
password.setText(passwordText);
}
}
But when I run my project, I get "Sorry, the application has stopped unexpectedly..." In LogCat I get a NullPointerException.
What is my mistake?
