Animates the backgroundColor of the view.
An optional animation curve. Possible values are contained in the AnimationCurve enumeration. Alternatively, you can pass an instance of type UIViewAnimationCurve for iOS or android.animation.TimeInterpolator for Android.
The amount of time, in milliseconds, to delay starting the animation.
The length of the animation in milliseconds. The default duration is 300 milliseconds.
Animates the height of a view.
Specifies how many times the animation should be played. Default is 1. iOS animations support fractional iterations, i.e. 1.5. To repeat an animation infinitely, use Number.POSITIVE_INFINITY
Animates the opacity of the view. Value should be a number between 0.0 and 1.0
Animates the rotate affine transform of the view. Value should be a number specifying the rotation amount in degrees.
Animates the scale affine transform of the view.
The view whose property is to be animated.
Animates the translate affine transform of the view.
Animates the width of a view.
Defines animation options for the View.animate method.