All Downloads are FREE. Search and download functionalities are using the official Maven repository.

android.animation.Animator Maven / Gradle / Ivy

Go to download

provide android hidden api definition ,helper for android super framework development

There is a newer version: 1.11
Show newest version
package android.animation;
public abstract class Animator
  implements java.lang.Cloneable
{
public static interface AnimatorListener
{
public abstract  void onAnimationStart(android.animation.Animator animation);
public abstract  void onAnimationEnd(android.animation.Animator animation);
public abstract  void onAnimationCancel(android.animation.Animator animation);
public abstract  void onAnimationRepeat(android.animation.Animator animation);
}
public  Animator() { throw new RuntimeException("Stub!"); }
public  void start() { throw new RuntimeException("Stub!"); }
public  void cancel() { throw new RuntimeException("Stub!"); }
public  void end() { throw new RuntimeException("Stub!"); }
public abstract  long getStartDelay();
public abstract  void setStartDelay(long startDelay);
public abstract  android.animation.Animator setDuration(long duration);
public abstract  long getDuration();
public abstract  void setInterpolator(android.animation.TimeInterpolator value);
public abstract  boolean isRunning();
public  boolean isStarted() { throw new RuntimeException("Stub!"); }
public  void addListener(android.animation.Animator.AnimatorListener listener) { throw new RuntimeException("Stub!"); }
public  void removeListener(android.animation.Animator.AnimatorListener listener) { throw new RuntimeException("Stub!"); }
public  java.util.ArrayList getListeners() { throw new RuntimeException("Stub!"); }
public  void removeAllListeners() { throw new RuntimeException("Stub!"); }
public  android.animation.Animator clone() { throw new RuntimeException("Stub!"); }
public  void setupStartValues() { throw new RuntimeException("Stub!"); }
public  void setupEndValues() { throw new RuntimeException("Stub!"); }
public  void setTarget(java.lang.Object target) { throw new RuntimeException("Stub!"); }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy