I have many Activities and in MainActivity and there is two Button (B1-B2). In B1 (Activity1) will user write same data and after finish back to MainActivity and in B2 (Activity2) will get all date from (Activity1)
(Activity1)
Intent i = new Intent(getApplicationContext(), Activity2.class);
i.putExtra("new_variable_name","value");
(Activity2)
Bundle extras = getIntent().getExtras();
if (extras != null) {
String value = extras.getString("new_variable_name");
}
this code doesn't work with me !!....any solve!!