How to use Android Localactivitymanager
In development, the Localactivitymanager class is used when the content of other activity is displayed in a local activity (or activity fragment).
Assuming that this container is a linearlayout,id is linearcontainer, the activity gets the view:LinearLayoutlinearcontainer= (linearlayout) Findviewbyid (r.id.container); linearcontainer. dispatchcreate (savedinstancestate); Instantiate Localactivitymanager: LocalactivitymanagerLocal= Getlocalactivitymanager (); Finally putotheractivity stuffed into linearcontainer inside: linearcontainer. AddView ((local.startactivity ("Otheractivityview", New Intent (This, Otheractivity.class)). Getdecorview ()); AddView is the dynamic addition of view to layout, which can be used elsewhere. local. StartActivity A string ID parameter more than the average startactivity:Actually thisString ID is just an identity, it is good to start a repeating name, the role of the system to see the same activity as the ID will be two activity as a processing. As for the last Getdecorview () method, it is the otheractivity inside the view to be transferred out.