我的基本android裁剪有问题。当我开始活动时,它会加载很久以前使用的相同图像,但不会加载实际图像。 有人知道这个错误吗?
这是我的代码:
Intent cropIntent = new Intent("com.android.camera.action.CROP");
cropIntent.setDataAndType(Uri.fromFile(new File(imagePath)), "image/*");
cropIntent.putExtra("crop", "true");
cropIntent.putExtra("outputX", 256);
cropIntent.putExtra("outputY", 256);
cropIntent.putExtra("return-data", true);
startActivityForResult(cropIntent, CROP_CODE);
在imagePath中是SD卡上实际图像的路径。但在种植活动中还有另一种形象。