When your UI changes in response to user action, you should animate the layout transitions. These animations give users feedback on their actions and help keep them oriented to the UI.
Android includes the transitions framework, which enables you to easily animate changes between two view hierarchies. The framework animates the views at runtime by changing some of their property values over time. The framework includes built-in animations for common effects and lets you create custom animations and transition lifecycle callbacks.
To get started, watch the video embedded here and read the Animations Overview.
Documentation
- Animations Overview
- Property Animation Overview
- Animate drawable graphics
- Reveal or hide a view using animation
- Move a View with Animation
- Move views using a fling animation
- Enlarge a view using a zoom animation
- Animate movement using spring physics
- Auto animate layout updates
- Animate layout changes using a transition
- Create a custom transition animation
- Start an activity using an animation
- Slide between fragments using ViewPager
- Slide between fragments using ViewPager2
- Migrate from ViewPager to ViewPager2
Videos
Custom layouts and graphics in Compose
Updated October 25, 2022
What’s new in Support Library v26
Updated August 29, 2017
Advanced Data Binding - Google I/O 2016
Updated May 25, 2016
A window into transitions - Google I/O 2016
Updated May 23, 2016
DevBytes: Android 4.4 Transitions
Updated October 31, 2013
DevBytes: ListView Expanding Cells Animation
Updated September 27, 2013
DevBytes: Folding Layout
Updated September 20, 2013
DevBytes: Cardflip Animation
Updated September 6, 2013
DevBytes: ListView Cell Dragging and Rearranging
Updated August 23, 2013
DevBytes: Cartoon Animation Techniques
Updated August 9, 2013
DevBytes: Squash and Stretch
Updated August 2, 2013
DevBytes: Animating Multiple Properties in Parallel
Updated June 28, 2013
DevBytes: Animating ListView Deletion: Now on Gingerbread!
Updated June 21, 2013
DevBytes: Animating ListView Deletion
Updated June 14, 2013
DevBytes: Custom Activity Animations
Updated June 7, 2013
DevBytes: Window Zoom Transitions
Updated March 29, 2013
DevBytes: Layout Transitions
Updated March 22, 2013
DevBytes: Picture Viewer
Updated March 15, 2013
DevBytes: Window Animations
Updated January 15, 2013
DevBytes: View Animations
Updated January 15, 2013
DevBytes: Property Animations
Updated January 11, 2013
DevBytes: CrossFading Animations
Updated January 11, 2013
DevBytes: KeyFrame Animations
Updated January 11, 2013
DevBytes: Bounce Animations
Updated January 11, 2013
DevBytes: ListView Deletion
Updated January 11, 2013
DevBytes: ListView Animations
Updated January 11, 2013
DevBytes: RequestDuringLayout
Updated January 11, 2013
DevBytes: Bitmap Scaling
Updated January 11, 2013
Additional resources
For more information about animation, consult the following resources.
Video
- Get Animated (Android Dev Summit '18): Overview of the various animation technologies available. Includes a summary of how to choose between the different animation options.