I am using ActivityGroup in my application. I am starting each activity by :
Window objWindow = getLocalActivityManager().startActivity(argActivityId,argIntent);
View objView = objWindow.getDecorView();
setContentView(objView);
But when I am trying to start an activity, that is already started by another activity, it will not start as a new activity, in开发者_Python百科stead the old activity object is retained.
How can I start this as a new activity?
Thanking you...
Set the FLAG_ACTIVITY_CLEAR_TOP intent flag of argIntent before calling startActivity.
精彩评论