1
2
3
4
5
6
7
8
9
10
11
12
13
| package com.lqr.emoji;
|
| import android.content.Context;
| import android.widget.ImageView;
|
| /**
| * CSDN_LQR
| * 图片加载器(交由外部工程决定)
| */
| public interface IImageLoader {
|
| void displayImage(Context context, String path, ImageView imageView);
| }
|
|