Android – start multiple activities
You might need something like this in order to launch deep into the app after the user has clicked a notification in order to display some newly added content, for example. Intent i = new Intent(this, A.class); i.setFlags(Intent.FLAG_ACTIVITY_NO_ANIMATION); startActivity(i); Intent j = new Intent(this, B.class); j.setFlags(Intent.FLAG_ACTIVITY_NO_ANIMATION); startActivity(j); Intent k = new Intent(this, C.class); startActivity(k); In … Read more