kimi
2021-02-18 749a5510a9f014446a3cd6ba57b3cb0cc8148dc1
1
2
3
4
5
6
7
8
9
10
11
12
13
14
package com.mylhyl.circledialog.engine;
 
import android.content.Context;
import android.widget.ImageView;
 
/**
 * Created by hupei on 2019/1/14 9:54.
 */
@Deprecated
public interface ImageLoadEngine {
 
    void loadImage(Context context, ImageView imageView, String url);
 
}