Can you make thing simpler?
Opened this issue · 0 comments
homandiy commented
cropImageView.crop(sourceUri).execute(new CropCallback() {
@Override
public void onSuccess(Bitmap cropped) {
cropImageView.save(cropped)
.execute(saveUri, mSaveCallback);
}
@Override
public void onError(Throwable e) {
}
});
I cannot use this function because where is the mSaveCallback. Can you do it with one line? Or, there's no callback at all for the UI user.