API Diff Specification | |
To Version: | Android SDK 0.9_r1 |
From Version: | Android SDK m5-rc14 |
Generated | 2008.08.14 15:44 |
Added Methods | |
---|---|
int getRepeatCount() |
Defines how many times the animation should repeat. |
int getZAdjustment() |
Returns the Z ordering mode to use while running the animation as previously set by .setZAdjustment. |
boolean hasEnded() |
Indicates whether this animation has ended or not. |
boolean hasStarted() |
Indicates whether this animation has started or not. |
void restrictDuration(long ) |
Ensure that the duration that this animation will run is not longer than durationMillis. |
void setRepeatCount(int ) |
Sets how many times the animation should be repeated. |
void setZAdjustment(int ) |
Set the Z ordering mode to use while running the animation. |
boolean willChangeBounds() |
Indicates whether or not this animation will affect the bounds of the animated view. |
Added Fields | |
---|---|
int INFINITE |
Repeat the animation indefinitely. |
int RESTART |
When the animation reaches the end and the repeat count is INFINTE_REPEAT or a positive value, the animation restarts from the beginning. |
int START_ON_FIRST_FRAME |
Can be used as the start time to indicate the start time should be the current time when .getTransformation(long, Transformation) is invoked for the first animation frame. |
int ZORDER_BOTTOM |
Requests that the content being animated be forced under all other content for the duration of the animation. |
int ZORDER_NORMAL |
Requests that the content being animated be kept in its current Z order. |
int ZORDER_TOP |
Requests that the content being animated be forced on top of all other content for the duration of the animation. |
©2008 Google - Code Home - Site Terms of Service - Privacy Policy |