Skip to content Skip to sidebar Skip to footer

Android: Calling Crop Activity After Taking Photo

I'm facing a problem with parsing a uri of taken photo to crop activity. In my application, users can take a photo or select one from gallery and then crop it and upload it. Everyt

Solution 1:

I had intent.setType("image/*"); and it still didn't work...

What solved it for me was using: intent.setDataAndType(tempImageURI, "image/*");

Good luck!

Post a Comment for "Android: Calling Crop Activity After Taking Photo"