我正在使用 AQuery 加载相机拍摄的图像并将它们显示在我的活动中的图像视图中。问题是当我尝试做同样的事情但不拍照时,只需从我的画廊中选择图像,我的图像视图似乎没有任何内容。这是我的代码:
//Get image uri that was selected in gallery
Uri selectedImage = data.getData();
//Convert uri to string path
strMainPic = selectedImage.toString();
//Create file to add as parameter to AQuery
File Main = new File(strMainPic);
aq.id(R.id.image_one).image(Main, 100);
如果我使用selectedImage
并将其更改为Bitmap
with BitmapFactory
,它可以工作,但性能会受到影响。我究竟做错了什么?