I have two Intents and two Activitys.
I have in the first Intent an EditText.
I want to use the text in the EditText in the second intent and pass to the second intent
Intent myIntent = new Intent(mycurentActivity.this, secondActivity.class);
startActivity(myIntent);
Thank you in advance
Your looking for Intent#putExtra(String, String).
Here is an example:
When your receiving the Intent you can extract it again:
(http://developer.android.com/reference/android/content/Intent.html#getStringExtra(java.lang.String))