Available Methods
- addUpdateListener ( )
- ofFloat ( )
- setDuration ( )
- start ( )
- setInterpolator ( )
- ofInt ( )
- getAnimatedValue ( )
- addListener ( )
- ofObject ( )
- setRepeatCount ( )
- AnimatorUpdateListener ( )
- setStartDelay ( )
- setRepeatMode ( )
- getAnimatedFraction ( )
- setFloatValues ( )
- end ( )
- setEvaluator ( )
- cancel ( )
- isStarted ( )
- setTarget ( )
- setCurrentPlayTime ( )
- setObjectValues ( )
- getCurrentPlayTime ( )
- setIntValues ( )
- getDuration ( )
- removeAllUpdateListeners ( )
- getFrameDelay ( )
- ofPropertyValuesHolder ( )
- AnimatorPauseListener ( )
- isRunning ( )
- setFrameDelay ( )
Related Classes
- android.os.Bundle
- android.content.Context
- android.view.View
- android.util.Log
- android.widget.TextView
- android.content.Intent
- android.view.ViewGroup
- android.view.LayoutInflater
- android.os.Build
- android.util.AttributeSet
- android.widget.ImageView
- android.graphics.Color
- android.os.Handler
- android.widget.Button
- android.graphics.Bitmap
- android.graphics.Paint
- android.view.MotionEvent
- android.graphics.drawable.Drawable
- android.content.res.TypedArray
- android.support.annotation.Nullable
- android.support.annotation.NonNull
- android.annotation.TargetApi
- android.graphics.Rect
- android.annotation.SuppressLint
- android.content.res.Resources
Java Code Examples for android.animation.ValueAnimator#AnimatorPauseListener
The following examples show how to use
android.animation.ValueAnimator#AnimatorPauseListener .
You can vote up the ones you like or vote down the ones you don't like,
and go to the original project or source file by following the links above each example. You may check out the related API usage on the sidebar.
Example 1
Source File: ViewPropertyObjectAnimator.java From ViewPropertyObjectAnimator with Apache License 2.0 | 4 votes |
public ViewPropertyObjectAnimator addPauseListener(ValueAnimator.AnimatorPauseListener listener) { if (android.os.Build.VERSION.SDK_INT >= Build.VERSION_CODES.KITKAT) { mPauseListeners.add(listener); } return this; }
Example 2
Source File: ViewPropertyObjectAnimator.java From ViewPropertyObjectAnimator with Apache License 2.0 | 4 votes |
public ViewPropertyObjectAnimator removePauseListener(ValueAnimator.AnimatorPauseListener listener) { if (android.os.Build.VERSION.SDK_INT >= Build.VERSION_CODES.KITKAT) { mPauseListeners.remove(listener); } return this; }