android – 从图库的ACTION_GET_CONTENT之后返回的Uri在ImageView的setImageURI()中不起作用

前端之家收集整理的这篇文章主要介绍了android – 从图库的ACTION_GET_CONTENT之后返回的Uri在ImageView的setImageURI()中不起作用前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我正在从画廊使用Uri获取图像
Intent intent = new Intent();  
intent.setType("image/*");  
intent.setAction(Intent.ACTION_GET_CONTENT);  
startActivityForResult(Intent.createChooser(intent,"Choose Picture"),requestCode);

并尝试显示图像

imageView.setImageURI(uri);

这里,uri是通过intent.getData()在onActivityResult中接收的图像的Uri.

但没有显示图像.另外,

File file=new File( uri.getPath() );

file.exists()返回false.

解决方法

问题是你得到Uri,但是从那个uri你必须创建Bitmap来显示在你的Imageview.这里有各种各样的机制来做同样的代码.
Intent intent = new Intent();  
intent.setType("image/*");  
intent.setAction(Intent.ACTION_GET_CONTENT);  
startActivityForResult(Intent.createChooser(intent,1);

@Override
protected void onActivityResult(int requestCode,int resultCode,Intent data) 
{
    if(resultCode==RESULT_CANCELED)
    {
        // action cancelled
    }
    if(resultCode==RESULT_OK)
    {
        Uri selectedimg = data.getData();
        imageView.setImageBitmap(MediaStore.Images.Media.getBitmap(this.getContentResolver(),selectedimg));
    }
}
原文链接:https://www.f2er.com/android/312912.html

猜你在找的Android相关文章