1
2
3
4
5
6
7
8
9
10
11
12
13
14
| package com.ypx.imagepicker.data;
|
| import androidx.annotation.Nullable;
|
| import com.ypx.imagepicker.bean.ImageItem;
|
| public interface ICameraExecutor {
|
| void takePhoto();
|
| void takeVideo();
|
| void onTakePhotoResult(@Nullable ImageItem imageItem);
| }
|
|