I\'ve been trying to crop and resize an image while taking a picture through the camera intent but don\'t understand what I\'m doing wrong here -- can\'t get the cropped ima
Try to remove this line: intent.putExtra("return-data", true);
You dont need to pass this in. That line of code will allow you to retrieve your bitmap by the data intent. In this case, your getting your bitmap from a URI.