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);
|
| }
|
|