BaseImageLoaderStrategy.java 273 字节
package com.xdy.commonlibrary.imageloader;

import android.content.Context;

/**
 * Created by jess on 8/5/16 15:50
 * contact with jess.yan.effort@gmail.com
 */
public interface BaseImageLoaderStrategy<T extends ImageConfig> {
    void loadImage(Context ctx, T config);
}