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

com.luck.picture.lib.photoview.Compat Maven / Gradle / Ivy

The newest version!

package com.luck.picture.lib.photoview;

import android.annotation.TargetApi;
import android.view.View;

class Compat {

    public static void postOnAnimation(View view, Runnable runnable) {
        postOnAnimationJellyBean(view, runnable);
    }

    @TargetApi(16)
    private static void postOnAnimationJellyBean(View view, Runnable runnable) {
        view.postOnAnimation(runnable);
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy