我正在从画廊使用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)); } }