get the values of textbox and store it to some variables ex, val1 and val2 then use
Intent intent = new Intent(getBaseContext(), SecondActivity.class);
intent.putExtra("Textbox_val1", val1);
intent.putExtra("Textbox_val2", val2);
startActivity(intent);
In the second Activity write
Bundle extras = getIntent().getExtras();
if(extras !=null) {
String value1 = extras.getString(Textbox_val1);
String value2 = extras.getString(Textbox_val2);
}
get the values of textbox and store it to some variables ex, `val1` and `val2` then use
Intent intent = new Intent(getBaseContext(), SecondActivity.class);
intent.putExtra("Textbox_val1", val1);
intent.putExtra("Textbox_val2", val2);
startActivity(intent)
In the second Activity write
Bundle extras = getIntent().getExtras();
if(extras !=null) {
String value1 = extras.getString(Textbox_val1);
String value2 = extras.getString(Textbox_val2);
}