Yes, you can use ActivityGroupand paste it there.
http://developer.android.com/reference/android/app/ActivityGroup.html
public class ActivityA extends ActivityGroup {
...
Intent b = new Intent(this, ActivityB.class);
Window bWindow = getLocalActivityManager().startActivity(ActivityB.class.getName(),b);
activityFrame.addView(bWindow.getDecorView());
....
source
share