当我尝试使用裁剪意图裁剪图像时,我会弹出“不幸的是 Google+ 已停止”。
我的代码是..
Intent cropIntent = new Intent("com.android.camera.action.CROP");
if (bitmap == null)
cropIntent.setDataAndType(picUri, "image/*");
else {
cropIntent.setType("image/*");
cropIntent.putExtra("data", bitmap);
}
// set crop properties
cropIntent.putExtra("crop", "true");
cropIntent.putExtra("aspectX", 1);
cropIntent.putExtra("aspectY", 1);
cropIntent.putExtra("outputX", 128);
cropIntent.putExtra("outputY", 128);
cropIntent.putExtra("return-data", true);
startActivityForResult(cropIntent, CROP_REQUEST);
注意:这个问题是在更新 Google+ 之后出现的。当我卸载 google 的更新加上没有问题出现。那么新的 Google+ 有什么错误吗?还是我应该更改代码中的某些内容?