if I want to send the same data to more than one Activity for example this code:
Intent passDataToSomeScreen = new Intent(MainActivity.this,
Second_Screen.class);
String first_name = etFirstName.getText().toString();
passDataToSecondScreen.putExtra("FIRST_NAME", first_name);
String last_name = etLastName.getText().toString();
passDataToSecondScreen.putExtra("LAST_NAME", last_name);
startActivity(passDataToSomeScreen);
But instead of going to the second screen, I want to send it also to third screen, forth etc.. (concurrent...) than to get the same data on each screen
Can it be done from one Intent?