1

我正在使用 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并将其更改为Bitmapwith BitmapFactory,它可以工作,但性能会受到影响。我究竟做错了什么?

4

1 回答 1

2

我几秒钟前刚刚解决了它。我使用了这段代码:

Uri selectedImage = data.getData();

try {
    bmp = BitmapFactory.decodeStream(getContentResolver().openInputStream(selectedImage));
} catch (FileNotFoundException e) {
    e.printStackTrace();
}

aq.id(R.id.image_one).image(bmp, AQuery.RATIO_PRESERVE);

我刚刚将它添加到我的onActivityResult()方法中。

于 2013-08-12T14:28:38.927 回答