我在Android应用程序中找到了启动裁剪意图的代码:
Bitmap bitmap = BitmapFactory.decodeFile(mFile.getPath());
Intent cropIntent = new Intent("com.android.camera.action.CROP");
cropIntent.setDataAndType(Uri.fromFile(mFile), "image/*");
cropIntent.putExtra("crop", "true");
cropIntent.putExtra("aspectX", 1);
cropIntent.putExtra("aspectY", 1);
cropIntent.putExtra("outputX", 256);
cropIntent.putExtra("outputY", 256);
cropIntent.putExtra("return-data", true);
startActivityForResult(cropIntent, 2);
现在我想把这个信息放在里面:
我该怎么办?