1、平时Intent 传递图片的时候,不要直接传data,要传递 URL 来处理,否则大图片容易传输失败。
E/JavaBinder(29445): !!! FAILED BINDER TRANSACTION !!! (parcel size = 2560292)
2、通过系统的裁剪图片的时候不要返回直接返回Data,要返回URL,返回data 的时候图片比较模糊。
photoPickerIntent.putExtra(MediaStore.EXTRA_OUTPUT, getTempUri());
photoPickerIntent.putExtra("outputFormat",
Bitmap.CompressFormat.JPEG.toString());