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
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"