Intent i = new Intent(
Intent.ACTION_PICK,
android.provider.MediaStore.Images.Media.EXTERNAL_CONTENT_URI);
//相册选择图片的intent
选择图片后我希望能把图片给File量mPhotoFile
然后再调用一个intent,并用putExtra("photo",mPhotoFile);
的方式传给另一个class
如何将从相册提出的照片赋给file量呢?