我正嘗試使用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
已成功。
任何方式從文件路徑加載圖像?
在哪個sdk版本你的應用正在運行?請檢查logcat,如果你正在越來越'FileUriExposedException' – tahsinRupam