我想在更改 ActivityGroup 中的活动时添加幻灯片过渡动画。我使用以下功能来更改使用意图的活动:
public void replaceContentView(String id, Intent newIntent) {
View view = getLocalActivityManager().startActivity(id,
newIntent.addFlags(Intent.FLAG_ACTIVITY_CLEAR_TOP))
.getDecorView();
history.add(view);
this.setContentView(view);
}
有什么建议我该怎么做?