https://github.com/ophilbert/ActivityTransition
An android project presenting some transitions you can use between activities
https://github.com/ophilbert/ActivityTransition
Last synced: 7 months ago
JSON representation
An android project presenting some transitions you can use between activities
- Host: GitHub
- URL: https://github.com/ophilbert/ActivityTransition
- Owner: ophilbert
- Created: 2013-04-14T18:16:18.000Z (about 12 years ago)
- Default Branch: master
- Last Pushed: 2014-10-16T19:53:12.000Z (over 10 years ago)
- Last Synced: 2024-07-01T10:57:28.281Z (11 months ago)
- Language: Java
- Size: 560 KB
- Stars: 260
- Watchers: 17
- Forks: 81
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
- awesome-android-ui - https://github.com/ophilbert/ActivityTransition
- awesome-android-ui - https://github.com/ophilbert/ActivityTransition
README
ActivityTransition
==================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)` methodNote that the ActivityAnimator class is here to help you choosing your animation but you can also directly use `overridePendingTransition(int, int)` on your Activity
#Animations
Fade
[](http://philbert.mobi/gif/fade.gif)
Flip Horizontal
[](http://philbert.mobi/gif/flip-horizontal.gif)
Flip Vertical
[](http://philbert.mobi/gif/flip-vertical.gif)
Disappear Top Left
[](http://philbert.mobi/gif/disappear_top_left.gif)
Appear Top Left
[](http://philbert.mobi/gif/appear_top_left.gif)
Appear Bottom Right
[](http://philbert.mobi/gif/appear_bottom_right.gif)
Disappear Bottom Right
[](http://philbert.mobi/gif/disappear_bottom_right.gif)
Unzoom
[](http://philbert.mobi/gif/zoom.gif)