Package | Description |
---|---|
com.actionbarsherlock.internal.nineoldandroids.animation | |
com.actionbarsherlock.internal.widget |
Modifier and Type | Class and Description |
---|---|
class |
AnimatorSet
This class plays a set of
Animator objects in the specified order. |
class |
ObjectAnimator
This subclass of
ValueAnimator provides support for animating properties on target objects. |
class |
ValueAnimator
This class provides a simple timing engine for running animations
which calculate animated values and set them on target objects.
|
Modifier and Type | Method and Description |
---|---|
Animator |
Animator.clone() |
abstract Animator |
Animator.setDuration(long duration)
Sets the length of the animation.
|
Modifier and Type | Method and Description |
---|---|
ArrayList<Animator> |
AnimatorSet.getChildAnimations()
Returns the current list of child Animator objects controlled by this
AnimatorSet.
|
Modifier and Type | Method and Description |
---|---|
AnimatorSet.Builder |
AnimatorSet.Builder.after(Animator anim)
Sets up the given animation to play when the animation supplied in the
AnimatorSet.play(Animator) call that created this Builder object
to start when the animation supplied in this method call ends. |
AnimatorSet.Builder |
AnimatorSet.Builder.before(Animator anim)
Sets up the given animation to play when the animation supplied in the
AnimatorSet.play(Animator) call that created this Builder object
ends. |
void |
AnimatorListenerAdapter.onAnimationCancel(Animator animation)
Notifies the cancellation of the animation.
|
void |
Animator.AnimatorListener.onAnimationCancel(Animator animation)
Notifies the cancellation of the animation.
|
void |
AnimatorListenerAdapter.onAnimationEnd(Animator animation)
Notifies the end of the animation.
|
void |
Animator.AnimatorListener.onAnimationEnd(Animator animation)
Notifies the end of the animation.
|
void |
AnimatorListenerAdapter.onAnimationRepeat(Animator animation)
Notifies the repetition of the animation.
|
void |
Animator.AnimatorListener.onAnimationRepeat(Animator animation)
Notifies the repetition of the animation.
|
void |
AnimatorListenerAdapter.onAnimationStart(Animator animation)
Notifies the start of the animation.
|
void |
Animator.AnimatorListener.onAnimationStart(Animator animation)
Notifies the start of the animation.
|
AnimatorSet.Builder |
AnimatorSet.play(Animator anim)
This method creates a
Builder object, which is used to
set up playing constraints. |
void |
AnimatorSet.playSequentially(Animator... items)
Sets up this AnimatorSet to play each of the supplied animations when the
previous animation ends.
|
void |
AnimatorSet.playTogether(Animator... items)
Sets up this AnimatorSet to play all of the supplied animations at the same time.
|
AnimatorSet.Builder |
AnimatorSet.Builder.with(Animator anim)
Sets up the given animation to play at the same time as the animation supplied in the
AnimatorSet.play(Animator) call that created this Builder object. |
Modifier and Type | Method and Description |
---|---|
void |
AnimatorSet.playSequentially(List<Animator> items)
Sets up this AnimatorSet to play each of the supplied animations when the
previous animation ends.
|
void |
AnimatorSet.playTogether(Collection<Animator> items)
Sets up this AnimatorSet to play all of the supplied animations at the same time.
|
Modifier and Type | Field and Description |
---|---|
protected Animator |
ScrollingTabContainerView.mVisibilityAnim |
protected Animator |
AbsActionBarView.mVisibilityAnim |
Modifier and Type | Method and Description |
---|---|
void |
ScrollingTabContainerView.VisibilityAnimListener.onAnimationCancel(Animator animation) |
void |
ActionBarContextView.onAnimationCancel(Animator animation) |
void |
AbsActionBarView.VisibilityAnimListener.onAnimationCancel(Animator animation) |
void |
ScrollingTabContainerView.VisibilityAnimListener.onAnimationEnd(Animator animation) |
void |
ActionBarContextView.onAnimationEnd(Animator animation) |
void |
AbsActionBarView.VisibilityAnimListener.onAnimationEnd(Animator animation) |
void |
ScrollingTabContainerView.VisibilityAnimListener.onAnimationRepeat(Animator animation) |
void |
ActionBarContextView.onAnimationRepeat(Animator animation) |
void |
AbsActionBarView.VisibilityAnimListener.onAnimationRepeat(Animator animation) |
void |
ScrollingTabContainerView.VisibilityAnimListener.onAnimationStart(Animator animation) |
void |
ActionBarContextView.onAnimationStart(Animator animation) |
void |
AbsActionBarView.VisibilityAnimListener.onAnimationStart(Animator animation) |
Copyright © 2011–2014. All rights reserved.