Package org.robolectric.shadows
Class ShadowValueAnimator
- java.lang.Object
-
- org.robolectric.shadows.ShadowValueAnimator
-
- Direct Known Subclasses:
ShadowObjectAnimator
@Implements(android.animation.ValueAnimator.class) public class ShadowValueAnimator extends Object
-
-
Constructor Summary
Constructors Constructor Description ShadowValueAnimator()
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description intgetActualRepeatCount()Returns the value that was set as the repeat count.static voidreset()protected voidsetRepeatCount(int count)
-
-
-
Method Detail
-
reset
@Resetter public static void reset()
-
setRepeatCount
@Implementation protected void setRepeatCount(int count)
-
getActualRepeatCount
public int getActualRepeatCount()
Returns the value that was set as the repeat count. This is otherwise the same as getRepeatCount(), except when the count was set to infinite.- Returns:
- Repeat count.
-
-