2017-04-10 110 views
0

我正嘗試使用Picasso從圖庫中加載圖像到ImageView無法從文件加載圖像://畢加索的路徑

下面的代碼

protected void onActivityResult(int requestCode, int resultCode, Intent data) { 
     if(resultCode!= Activity.RESULT_OK) return; 

     switch (requestCode) { 
      case PICK_GALLERY_IMAGE_REQUEST: { 
       Uri imageUri = data.getData(); 
       Log.d(DEBGUG_TAG,"Image URI: "+imageUri.toString()); 


       Picasso picasso = Picasso.with(getApplicationContext()); 
       picasso.setLoggingEnabled(true); 
       picasso.load(imageUri).error(R.drawable.c).into(testImgView, new com.squareup.picasso.Callback(){ 

        @Override 
        public void onSuccess() { 
         Log.d(DEBGUG_TAG,"Success loading image from uri:PICASSO"); 
        } 

        @Override 
        public void onError() { 
         Log.d(DEBGUG_TAG,"Cannot load image"); 
        } 
       }); 

的問題是,而選擇從庫返回文件路徑

D/debug: Image URI: file:///storage/emulated/0/DCIM/Camera/IMG_20170126_211524.jpg

這似乎並不與畢加索工作,因爲返回圖像錯誤和日誌D/debug: Cannot load image錯誤的方法。

但是從其他應用程序中選擇相同的圖像,返回Uri如: D/debug: Image URI: content://com.google.android.apps.photos.contentprovider/-1/1/content%3A%2F%2Fmedia%2Fexternal%2Fimages%2Fmedia%2F90455/ORIGINAL/NONE/1757236944已成功。

任何方式從文件路徑加載圖像?

+0

在哪個sdk版本你的應用正在運行?請檢查logcat,如果你正在越來越'FileUriExposedException' – tahsinRupam

回答

5

不要使用file://只是用它這樣的文件:

Uri targetUri = data.getData(); 
      if (data.toString().contains("content:")) { 
       imagePath = getRealPathFromURI(targetUri); 
      } else if (data.toString().contains("file:")) { 
       imagePath = targetUri.getPath(); 
      } else { 
       imagePath = null; 
      } 

public String getRealPathFromURI(Uri contentUri) { 
    Cursor cursor = null; 
    try { 
     String[] proj = {MediaStore.Images.Media.DATA}; 
     cursor = getContentResolver().query(contentUri, proj, null, null, 
       null); 
     int column_index = cursor 
       .getColumnIndexOrThrow(MediaStore.Images.Media.DATA); 
     cursor.moveToFirst(); 
     return cursor.getString(column_index); 
    } finally { 
     if (cursor != null) { 
      cursor.close(); 
     } 
    } 
} 
+0

我正在使用File file = new File(String.value(uri));我將它改爲'File file = new File(uri.getPath());'。謝謝。 –

+0

歡迎您 –

2

試試下面的代碼:

File imgFile = new File("/sdcard/Images/test_image.jpg"); 

if(imgFile.exists()){ 

    Bitmap myBitmap = BitmapFactory.decodeFile(imgFile.getAbsolutePath()); 

    ImageView myImage = (ImageView) findViewById(R.id.imageviewTest); 

    myImage.setImageBitmap(myBitmap); 

} 
1

嘗試ImageView的的內置方法setImageURI本地文件

testImgView.setImageURI(Uri.parse(imageUri)); 
+0

不,相同的問題,猜測它不是關於畢加索:P –