Possible Duplicate:
Passing data between activities in Android
How can I edit text in my Activity, then pass this text by an intent to a new Activity?
Possible Duplicate:
Passing data between activities in Android
How can I edit text in my Activity, then pass this text by an intent to a new Activity?
You can pass extra data via the intent using intent.putExtra("key", text_field.getText().toString())
on the intent before you send it (in the first activity) and getIntent().getExtras().getString("key")
in the second activity.
This is assuming text_field
is your EditText
you want to pass the value from. You can change "key"
to whatever you want, too.