Skip to content

Instantly share code, notes, and snippets.

@vaibhav-jani
Created June 15, 2016 06:02
Show Gist options
  • Select an option

  • Save vaibhav-jani/036a0fd336a0d83b34fb03784fbe7d97 to your computer and use it in GitHub Desktop.

Select an option

Save vaibhav-jani/036a0fd336a0d83b34fb03784fbe7d97 to your computer and use it in GitHub Desktop.
Multiple activities in samescreen.
LocalActivityManager mgr = getLocalActivityManager();
Intent i = new Intent(this, SomeActivity.class);
Window w = mgr.startActivity("unique_per_activity_string", i);
View wd = w != null ? w.getDecorView() : null;
if(wd != null) {
mSomeContainer.addView(wd);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment