翰林优商.apk(点击下载) / ImageAnimationHelper.java


package com.duoyou.task.sdk.xutils.image;

import android.graphics.drawable.Drawable;
import android.view.animation.AlphaAnimation;
import android.view.animation.Animation;
import android.view.animation.DecelerateInterpolator;
import android.widget.ImageView;
import java.lang.reflect.Method;

public final class ImageAnimationHelper {
    private static final Method cloneMethod;

    static {
        Method declaredMethod = Animation.class.getDeclaredMethod("clone", new Class[0]);
        declaredMethod.setAccessible(true);
        cloneMethod = declaredMethod;
    }

    private ImageAnimationHelper() {
    }

    public static void animationDisplay(ImageView imageView, Drawable drawable, Animation animation) {
        imageView.setImageDrawable(drawable);
        Method method = cloneMethod;
        if (!(method == null || animation == null)) {
            try {
                imageView.startAnimation((Animation) method.invoke(animation, new Object[0]));
                return;
            } catch (Throwable unused) {
            }
        }
        imageView.startAnimation(animation);
    }

    public static void fadeInDisplay(ImageView imageView, Drawable drawable) {
        AlphaAnimation alphaAnimation = new AlphaAnimation(0.0f, 1.0f);
        alphaAnimation.setDuration(300);
        alphaAnimation.setInterpolator(new DecelerateInterpolator());
        imageView.setImageDrawable(drawable);
        imageView.startAnimation(alphaAnimation);
    }
}