What is ActivityTransition?

ActivityTransition is an android project presenting some transitions you can use between activities.

Integration:

  • Add the anim folder to your Android project’s res folder
  • Import the ActivityAnimator class
  • Call new ActivityAnimator().animationName(this) right after the startActivity(Intent i) method

Note that the ActivityAnimator class is here to help you choosing your animation but you can also directly use overridePendingTransition(int, int) on your Activity.

Overview