There are two activities. I want to take the entered in the EditText field dat from the first screen into the second one. I used this code in the first activity:
Intent i = new Intent(this.getApplicationContext(),MainActivity.class);
i.putExtra((inputuserName.getText()).toString(), true);
startActivity(i);
How can access the value in the second one? Thanks!