时光

Strive to be an excellent developer

  :: 首页 :: 博问 :: 闪存 :: 新随笔 :: 联系 :: 订阅 订阅 :: 管理 ::

Start Activity

// 方式1
startActivity(new Intent(Animation.this, AlertDialogSamples.class));
overridePendingTransition(R.anim.fade, R.anim.hold);

// 方式2
// 看了ApiDemo之后才知道还有这么一种方法
ActivityOptions opts = ActivityOptions.makeCustomAnimation(Animation.this, R.anim.fade, R.anim.hold);
startActivity(new Intent(Animation.this, AlertDialogSamples.class), opts.toBundle());

Finish Activity ``` // 只有这一种方式了 finish(); overridePendingTransition(R.anim.fade, R.anim.hold); ```
posted on 2015-02-27 22:01  朱东方  阅读(139)  评论(0)    收藏  举报