Gets/sets if the transformation that this animation performed will persist when it is finished.
REPEAT_INFINITEAsInt
REPEAT_RESTARTAsInt
REPEAT_REVERSEAsInt
RepeatCountAsInt
RepeatModeAsInt
ResumeTranslation
Resumes a paused translation animation.
SetInterpolator (InterpolatorAsInt)
Sets the acceleration curve for this animation. Defaults to a linear interpolation. See http://developer.android.com/reference/android/view/animation/Interpolator.html for further details. Interpolator: one of the INTERPOLATOR constants. The Cycle Interpolator cannot be used with this function because the parameter is mandatory.
Sets the acceleration curve for this animation. Defaults to a linear interpolation. See http://developer.android.com/reference/android/view/animation/Interpolator.html for further details. Interpolator: one of the INTERPOLATOR constants. Param: factor or tension. The Accelerate/Decelerate Interpolator and the Bounce Interpolator have no parameter.
Start (MyViewAsandroid.view.View)
StartOffsetAsLong
Gets/sets when the animation should begin after the Start function was called (in milliseconds).
Adds a child animation to this animation set. Anim: animation to add.
DurationAsLong
Gets/sets the duration in milliseconds of every child animation.
Initialize (ShareInterpolatorAsBoolean)
Initializes the AnimationSet. ShareInterpolator: pass true if all of the animations in this set should use the interpolator associated with this AnimationSet. Pass false if each animation should use its own interpolator.
INTERPOLATOR_ACCELERATEAsInt
INTERPOLATOR_ACCELERATE_DECELERATEAsInt
INTERPOLATOR_ANTICIPATEAsInt
INTERPOLATOR_ANTICIPATE_OVERSHOOTAsInt
INTERPOLATOR_BOUNCEAsInt
INTERPOLATOR_CYCLEAsInt
INTERPOLATOR_DECELERATEAsInt
INTERPOLATOR_LINEARAsInt
INTERPOLATOR_OVERSHOOTAsInt
IsInitializedAsBoolean
PersistAfterAsBoolean
Gets/sets if the transformations that this animation set performed will persist when it is finished.
SetInterpolator (InterpolatorAsInt)
Sets the acceleration curve for every child animation in the set. Defaults to a linear interpolation. See http://developer.android.com/reference/android/view/animation/Interpolator.html for further details. This setting is ignored if you set ShareInterpolator to false when you initialized the set. Interpolator: one of the INTERPOLATOR constants. The Cycle Interpolator cannot be used with this function because the parameter is mandatory.
Sets the acceleration curve for every child animation in the set. Defaults to a linear interpolation. See http://developer.android.com/reference/android/view/animation/Interpolator.html for further details. This setting is ignored if you set ShareInterpolator to false when you initialized the set. Interpolator: one of the INTERPOLATOR constants. Param: factor or tension. The Accelerate/Decelerate Interpolator and the Bounce Interpolator have no parameter.
Start (viewAsandroid.view.View)
Plays the added animations together.
StartOffsetAsLong
Gets/sets when the animation set should begin after the Start function was called (in milliseconds).
Stop (viewAsandroid.view.View)
Stops all child animations. Warning: stopping an animation set does not trigger the AnimationEnd event of the child animations.
Initializes the ClipDrawable. Drawable: the drawable or bitmap to clip. Gravity: where to clip within the drawable. Orientation: one of the two orientation constants (horizontal or vertical). StartLevel: the initial clipping level. The drawable is clipped completely and not visible when the level is 0 and fully revealed when the level is 10000.
IsInitializedAsBoolean
LevelAsInt
Gets or sets the clipping level. The drawable is clipped completely and not visible when the level is 0 and fully revealed when the level is 10000.
Changes the layer (drawable or bitmap) at the given index. Returns True if the layer was replaced or False if the index was not found. You should invalidate the view displaying the layerdrawable after using this function.
Returns the drawable at the specified layer index.
Initialize (Layers() AsObject)
Initializes the LayerDrawable. Layers: an array of drawables (or bitmaps) to draw together. The element with the largest index will be drawn on top.
IsInitializedAsBoolean
NumberOfLayersAsInt [read only]
Returns the number of layers contained within the LayerDrawable.
SetAlpha (IndexAsInt, ValueAsInt)
Sets the opacity of the layer at the given index. You should invalidate the view displaying the layerdrawable after using this function. Value: Value of the alpha channel between 0 and 255.
Gets/sets whether the cross fade is enabled for this transition. When cross fade is disabled, the first drawable is always drawn opaque. With cross fade enabled, the first drawable is drawn with the opposite alpha of the second drawable. Cross fade is disabled by default.
Initialize (Layer1AsObject, Layer2AsObject)
Initializes the TransitionDrawable. Layer1: the drawable (or bitmap) to display first. Layer2: the drawable (or bitmap) displayed after a transition.
IsInitializedAsBoolean
ReverseTransition_2To1 (DurationAsInt)
Reverses the transition, picking up where the transition currently is. If the transition is not currently running, this will start the transition with the specified duration. If the transition is already running, the last known duration will be used. Duration: the duration to use if no transition is running.
ShowFirstLayer
Shows only the first layer.
StartTransition_1To2 (DurationAsInt)
Starts the cross-fade sequence to display the second layer on top of the first layer. Duration: the length of the transition in milliseconds.
Top