SimpleCropView icon indicating copy to clipboard operation
SimpleCropView copied to clipboard

Can you make thing simpler?

Open homandiy opened this issue 7 years ago • 0 comments

                    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.

homandiy avatar Feb 21 '18 17:02 homandiy