1# Physics Animation Layout 2 3## Overview 4**PhysicsAnimationLayout** works with an implementation of **PhysicsAnimationController** to construct and maintain physics animations for each of its child views. During the initial construction of the animations, the layout queries the controller for configuration settings such as which properties to animate, which animations to chain together, and what stiffness or bounciness to use. Once the animations are built to the controller’s specifications, the controller can then ask the layout to start, stop and manipulate them arbitrarily to achieve any desired animation effect. The controller is notified whenever children are added or removed from the layout, so that it can animate their entrance or exit, respectively. 5 6An example usage is Bubbles, which uses a PhysicsAnimationLayout for its stack of bubbles. Bubbles has controller subclasses including StackAnimationController and ExpansionAnimationController. StackAnimationController tells the layout to configure the translation animations to be chained (for the ‘following’ drag effect), and has methods such as ```moveStack(x, y)``` to animate the stack to a given point. ExpansionAnimationController asks for no animations to be chained, and exposes methods like ```expandStack()``` and ```collapseStack()```, which animate the bubbles to positions along the bottom of the screen. 7 8## PhysicsAnimationController 9PhysicsAnimationController is a public abstract class in PhysicsAnimationLayout. Controller instances must override configuration methods, which are used by the layout while constructing the animations, and animation control methods, which are called to initiate animations in response to events. 10 11### Configuration Methods 12![Diagram of how animations are configured using the controller's configuration methods.](physics-animation-layout-config-methods.png) 13The controller must override the following methods: 14 15```Set<ViewProperty> getAnimatedProperties()``` 16Returns the properties, such as TRANSLATION_X and TRANSLATION_Y, for which the layout should construct physics animations. 17 18```int getNextAnimationInChain(ViewProperty property, int index)``` 19If the animation at the given index should update another animation whenever its value changes, return the index of the other animation. Otherwise, return NONE. This is used to chain animations together, so that when one animation moves, the other ‘follows’ closely behind. 20 21```float getOffsetForChainedPropertyAnimation(ViewProperty property)``` 22Value to add every time chained animations update the subsequent animation in the chain. For example, returning TRANSLATION_X offset = 20px means that if the first animation in the chain is animated to 10px, the second will update to 30px, the third to 50px, etc. 23 24```SpringForce getSpringForce(ViewProperty property)``` 25Returns a SpringForce instance to use for animations of the given property. This allows the controller to configure stiffness and bounciness values. Since the physics animations internally use SpringForce instances to hold inflight animation values, this method needs to return a new SpringForce instance each time - no constants allowed. 26 27### Animation Control Methods 28Once the layout has used the controller’s configuration properties to build the animations, the controller can use them to actually run animations. This is done for two reasons - reacting to a view being added or removed, or responding to another class (such as a touch handler or broadcast receiver) requesting an animation. ```onChildAdded```, ```onChildRemoved```, and ```setChildVisibility``` are called automatically by the layout, giving the controller the opportunity to animate the child in/out/visible/gone. Custom methods are called by anyone with access to the controller instance to do things like expand, collapse, or move the child views. 29 30In either case, the controller can use `super.animationForChild` to retrieve a `PhysicsPropertyAnimator` instance. This object behaves similarly to the `ViewPropertyAnimator` object you would receive from `View.animate()`. 31 32#### PhysicsPropertyAnimator 33 34Like `ViewPropertyAnimator`, `PhysicsPropertyAnimator` provides the following methods for animating properties: 35- `alpha(float)` 36- `translationX/Y/Z(float)` 37- `scaleX/Y(float)` 38 39It also provides the following configuration methods: 40- `withStartDelay(int)`, for starting the animation after a given delay. 41- `withStartVelocity(float)`, for starting the animation with the given start velocity. 42- `withPositionStartVelocities(float, float)`, for setting specific start velocities for TRANSLATION_X and TRANSLATION_Y, since these typically differ. 43- `start(Runnable)`, to start the animation, with an optional end action to call when the animations for every property (including chained animations) have completed. 44 45For example, moving the first child view: 46 47``` 48animationForChild(getChildAt(0)) 49 .translationX(100) 50 .translationY(200) 51 .setStartDelay(500) 52 .start(); 53``` 54 55This would use the physics animations constructed by the layout to spring the view to *(100, 200)* after 500ms. 56 57If the controller’s ```getNextAnimationInChain``` method set up the first child’s TRANSLATION_X/Y animations to be chained to the second child’s, this would result in the second child also springing towards (100, 200), plus any offset returned by ```getOffsetForChainedPropertyAnimation```. 58 59##### Advanced Usage 60The animator has additional functionality to reduce the amount of boilerplate required for typical physics animation use cases. 61 62- Often, animations will set starting values for properties before the animation begins. Property methods like `translationX` have an overloaded variant: `translationX(from, to)`. When `start()` is called, the animation will set the view's translationX property to `from` before beginning the animation to `to`. 63- We may want to use different end actions for each property. For example, if we're animating a view to the bottom of the screen, and also fading it out, we might want to perform an action as soon as the fade out is complete. We can use `alpha(to, endAction)`, which will call endAction as soon as the alpha animation is finished. A special case is `position(x, y, endAction)`, where the endAction is called when both translationX and translationY animations have completed. 64 65`PhysicsAnimationController` also provides `animationsForChildrenFromIndex(int, ChildAnimationConfigurator)`. This is a convenience method for starting animations on multiple child views, starting at the given index. The `ChildAnimationConfigurator` is called with a `PhysicsPropertyAnimator` for each child, where calls to methods like `translationX` and `withStartVelocity` can be made. `animationsForChildrenFromIndex` returns a `MultiAnimationStarter` with a single method, `startAll(endAction)`, which starts all of the animations and calls the end action when they have all completed. 66 67##### Examples 68Spring the stack of bubbles (whose animations are chained) to the bottom of the screen, shrinking them to 50% size. Once the first bubble is done shrinking, begin fading them out, and then remove them all from the parent once all bubbles have faded out: 69 70``` 71animationForChild(leadBubble) 72 .position(screenCenter, screenBottom) 73 .scaleX(0.5f) 74 .scaleY(0.5f, () -> animationForChild(leadBubble).alpha(0).start(removeAllFromParent)) 75 .start(); 76``` 77 78'Drop in' a child view that was just added to the layout: 79 80``` 81animationForChild(newView) 82 .scaleX(1.15f /* from */, 1f /* to */) 83 .scaleY(1.15f /* from */, 1f /* to */) 84 .alpha(0f /* from */, 1f /* to */) 85 .position(posX, posY) 86 .start(); 87``` 88 89Move every view except for the first to x = (index - 1) * 50, then remove the first view. 90 91``` 92animationsForChildrenFromIndex(1, (index, anim) -> anim.translationX((index - 1) * 50)) 93 .startAll(removeFirstView); 94``` 95 96## PhysicsAnimationLayout 97The layout itself is a FrameLayout descendant with a few extra methods: 98 99```setController(PhysicsAnimationController controller)``` 100Attaches the layout to the controller, so that the controller can access the layout’s protected methods. It also constructs or reconfigures the physics animations according to the new controller’s configuration methods. 101 102```setEndListenerForProperty(ViewProperty property, AnimationEndListener endListener)``` 103Sets an end listener that is called when all animations on the given property have ended. 104 105```setMaxRenderedChildren(int max)``` 106Child views beyond this limit will be set to GONE, and won't be animated, for performance reasons. Defaults to **5**. 107 108It has one protected method, ```animateValueForChildAtIndex(ViewProperty property, int index, float value)```, which is visible to PhysicsAnimationController descendants. This method dispatches the given value to the appropriate animation.