我想在更改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);
}
有什么建议吗?我该怎么做?
将动画添加到视图
示例
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);
}