jdamcd / android-crop

Android library project for cropping images
4.54k stars 1.08k forks source link

Doesnt getting result onActivityResult #240

Open MaheshEx1990 opened 8 years ago

MaheshEx1990 commented 8 years ago

Hi

CropImageActivity open from Fragment but not getting result on Fragment OnresultActivity.

aavalosmt commented 8 years ago

Hi

I made it work this way:

Crop.of(cropInputUri, cropOutputUri).asSquare().start(getContext(), Fragment.this, Crop.REQUEST_CROP);

If you're overriding onActivityResult on the activity your Fragment is attached to make sure to call the super method.