AnimatorInflater_Delegatepublic class AnimatorInflater_Delegate extends Object Delegate providing alternate implementation to static methods in {@link AnimatorInflater}. |
Methods Summary |
---|
static Animator | loadAnimator(android.content.Context context, int id)
return loadAnimator(context.getResources(), context.getTheme(), id);
| static Animator | loadAnimator(android.content.res.Resources resources, android.content.res.Resources.Theme theme, int id)
return loadAnimator(resources, theme, id, 1);
| static Animator | loadAnimator(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 ValueAnimator | loadAnimator(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);
|
|