While starting new activity in your button click write below code
Intent intent = new Intent();
intent.putExtra("TextValue", text1.getText().toString());
intent.setClass(Activity1.this, Activity2.class);
startActivity(intent);
In your Activity2 in onCreate()
String s = getIntent().getStringExtra("TextValue");