I have an activity which opens a photo picker and crops it. Sometimes I get this error.
java.lang.RuntimeException: Failure delivering result ResultInfo{who=null, request=9162, result=-1, data=Intent { dat=content://media/external/images/media/22113 flg=0x1 }} to activity
This is my onActicvityResult(),
if (requestCode == Crop.REQUEST_PICK && resultCode == RESULT_OK) {
beginCrop(result.getData());
} else if (requestCode == Crop.REQUEST_CROP) {
handleCrop(resultCode, result);
}
I want to know what does "who=null" mean? How can I prevent the crash?