My project\'s requirement is : edittext value is first entered by user and that same value will be visible in another activity\'s editext , which should be read only..
You can send N number of data from one activity to other activity like below :
Sneder : Current.java
Intent values = new Intent(Current.this, Destination.class);
//values.putExtra("KEY","VALUE");
values.putExtra("USER_NAME",user_name);
startActivity(values);
finish();
Receiver : Destination.java
String value = getIntent().getStringExtra("USER_NAME");