android.animation.LayoutTransition Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of androidstub Show documentation
Show all versions of androidstub Show documentation
provide android hidden api definition ,helper for android super framework development
package android.animation;
public class LayoutTransition
{
public static interface TransitionListener
{
public abstract void startTransition(android.animation.LayoutTransition transition, android.view.ViewGroup container, android.view.View view, int transitionType);
public abstract void endTransition(android.animation.LayoutTransition transition, android.view.ViewGroup container, android.view.View view, int transitionType);
}
public LayoutTransition() { throw new RuntimeException("Stub!"); }
public void setDuration(long duration) { throw new RuntimeException("Stub!"); }
public void enableTransitionType(int transitionType) { throw new RuntimeException("Stub!"); }
public void disableTransitionType(int transitionType) { throw new RuntimeException("Stub!"); }
public boolean isTransitionTypeEnabled(int transitionType) { throw new RuntimeException("Stub!"); }
public void setStartDelay(int transitionType, long delay) { throw new RuntimeException("Stub!"); }
public long getStartDelay(int transitionType) { throw new RuntimeException("Stub!"); }
public void setDuration(int transitionType, long duration) { throw new RuntimeException("Stub!"); }
public long getDuration(int transitionType) { throw new RuntimeException("Stub!"); }
public void setStagger(int transitionType, long duration) { throw new RuntimeException("Stub!"); }
public long getStagger(int transitionType) { throw new RuntimeException("Stub!"); }
public void setInterpolator(int transitionType, android.animation.TimeInterpolator interpolator) { throw new RuntimeException("Stub!"); }
public android.animation.TimeInterpolator getInterpolator(int transitionType) { throw new RuntimeException("Stub!"); }
public void setAnimator(int transitionType, android.animation.Animator animator) { throw new RuntimeException("Stub!"); }
public android.animation.Animator getAnimator(int transitionType) { throw new RuntimeException("Stub!"); }
public void setAnimateParentHierarchy(boolean animateParentHierarchy) { throw new RuntimeException("Stub!"); }
public boolean isChangingLayout() { throw new RuntimeException("Stub!"); }
public boolean isRunning() { throw new RuntimeException("Stub!"); }
public void addChild(android.view.ViewGroup parent, android.view.View child) { throw new RuntimeException("Stub!"); }
@java.lang.Deprecated()
public void showChild(android.view.ViewGroup parent, android.view.View child) { throw new RuntimeException("Stub!"); }
public void showChild(android.view.ViewGroup parent, android.view.View child, int oldVisibility) { throw new RuntimeException("Stub!"); }
public void removeChild(android.view.ViewGroup parent, android.view.View child) { throw new RuntimeException("Stub!"); }
@java.lang.Deprecated()
public void hideChild(android.view.ViewGroup parent, android.view.View child) { throw new RuntimeException("Stub!"); }
public void hideChild(android.view.ViewGroup parent, android.view.View child, int newVisibility) { throw new RuntimeException("Stub!"); }
public void addTransitionListener(android.animation.LayoutTransition.TransitionListener listener) { throw new RuntimeException("Stub!"); }
public void removeTransitionListener(android.animation.LayoutTransition.TransitionListener listener) { throw new RuntimeException("Stub!"); }
public java.util.List getTransitionListeners() { throw new RuntimeException("Stub!"); }
public static final int CHANGE_APPEARING = 0;
public static final int CHANGE_DISAPPEARING = 1;
public static final int APPEARING = 2;
public static final int DISAPPEARING = 3;
public static final int CHANGING = 4;
}