Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Is there a way to slow down all animations on the emulator?

On the iPhone emulator, I can set the emulator to use slow animations. This allows me to carefully watch the animation, and check for visual problems. Is there a way to do the same thing for the Android emulator, either through a setting, or through some type of operating system trick? Obviously, I can increase the time for custom animations and do it that way, but that wouldn't help with built-in animations such as Activity transitions.

like image 876
Micah Hainline Avatar asked Feb 21 '12 19:02

Micah Hainline


2 Answers

In the device developer settings you can slow down window animation, transition animation and animator duration. This last item slows down anything based on an underlying Animator object, which is quite effective for animation debugging in my experience.

Go to:

Settings app -> Developer settings -> Drawing -> Animator duration scale

You can then change the scale multiplier to speed up or slow down animations as you wish.

like image 116
Andy Avatar answered Oct 12 '22 07:10

Andy


Some animations can be slowed down by using the Developers settings screen. Future versions of Android will allow you to slow down all (or at least most) animations.

like image 42
Romain Guy Avatar answered Oct 12 '22 05:10

Romain Guy