1
2
3
4
5
6
7
8
9
10
11
12
| package com.yalantis.ucrop.callback;
|
| import android.graphics.Bitmap;
| import androidx.annotation.NonNull;
|
| public interface BitmapLoadShowCallback {
|
| void onBitmapLoaded(@NonNull Bitmap bitmap);
|
| void onFailure(@NonNull Exception bitmapWorkerException);
|
| }
|
|