public interface AnimatedView
Modifier and Type | Method and Description |
---|---|
android.animation.Animator |
getAnimator()
Gets the current Animator object.
|
AnimUtils.Style |
getInAnimation()
Gets the animation used when view's visibility is changed from GONE/INVISIBLE to VISIBLE
|
AnimUtils.Style |
getOutAnimation()
Gets the animation used when view's visibility is changed from VISIBLE to GONE/INVISIBLE
|
void |
setInAnimation(AnimUtils.Style inAnim)
Sets the animation used when view's visibility is changed from GONE/INVISIBLE to VISIBLE
|
void |
setOutAnimation(AnimUtils.Style outAnim)
Sets the animation used when view's visibility is changed from VISIBLE to GONE/INVISIBLE
|
android.animation.Animator getAnimator()
AnimUtils.Style getOutAnimation()
void setOutAnimation(AnimUtils.Style outAnim)
outAnim
- new out animation. Use AnimUtils.Style.None for no animation.AnimUtils.Style getInAnimation()
void setInAnimation(AnimUtils.Style inAnim)
inAnim
- new in animation. Use AnimUtils.Style.None for no animation.