I want to add slide transition animation while changing activities within a ActivityGroup. I have used following function to change activities using intent:
publ
add animation to the view
public void replaceContentView(String id, Intent newIntent) {
View view = getLocalActivityManager().startActivity(id,
newIntent.addFlags(Intent.FLAG_ACTIVITY_CLEAR_TOP))
.getDecorView();
Animation hyperspaceJump =
AnimationUtils.loadAnimation(this, R.anim.myanimation);
view.startAnimation(hyperspaceJump);
history.add(view);
this.setContentView(view);
}