FileDocCategorySizeDatePackage
AnimatorInflater_Delegate.javaAPI DocAndroid 5.1 API2220Thu Mar 12 22:22:44 GMT 2015android.animation

AnimatorInflater_Delegate

public class AnimatorInflater_Delegate extends Object
Delegate providing alternate implementation to static methods in {@link AnimatorInflater}.

Fields Summary
Constructors Summary
Methods Summary
static AnimatorloadAnimator(android.content.Context context, int id)

        return loadAnimator(context.getResources(), context.getTheme(), id);
    
static AnimatorloadAnimator(android.content.res.Resources resources, android.content.res.Resources.Theme theme, int id)

        return loadAnimator(resources, theme, id, 1);
    
static AnimatorloadAnimator(android.content.res.Resources resources, android.content.res.Resources.Theme theme, int id, float pathErrorScale)

        // This is a temporary fix to http://b.android.com/77865. This skips loading the
        // animation altogether.
        // TODO: Remove this override when Path.approximate() is supported.
        return new FakeAnimator();
    
static ValueAnimatorloadAnimator(android.content.res.Resources res, android.content.res.Resources.Theme theme, android.util.AttributeSet attrs, ValueAnimator anim, float pathErrorScale)

        return AnimatorInflater.loadAnimator_Original(res, theme, attrs, anim, pathErrorScale);