我尝试了几乎所有可能将图像设置为image-view
来自存储文件路径的方法。
它们都不起作用。图像是从其他活动的图库中选择的,图像路径存储到数据库中。
图像类型为 .jpg .jpeg .png
存储在数据库中的图像路径,路径不带任何扩展名
eg. /external/storage/media/carimagename
当我尝试将图像设置为imageview
使用此代码时没有错误但未设置图像。
for(int i=0;i<n;i++)
{
Bitmap pic = BitmapFactory.decodeFile(listview_arraypro1[i]);
carpict.setImageBitmap(pic);
/// File imgFile =new File("listview_arraypro1[i]");
// carpict.setImageBitmap(BitmapFactory.decodeFile(imgFile.getAbsolutePath()));
// Bitmap carpic = BitmapFactory.decodeStream(is);
// carpic = Bitmap.createScaledBitmap(carpic, 72, 70, false);
}
如何将具有路径格式的图像设置/external/storage/media/carimagename
为imageview
?
我使用以下内容获取先前活动中的图像路径
Uri selectedImage = imageReturnedIntent.getData();
String selectedImagePath = selectedImage.getPath();
我从 selectedImagePath 得到错误的路径吗?
这是我使用没有 mnt/sdcard 的路径
private String getRealPathFromURI(Uri contentURI) {
Cursor cursor = getContentResolver().query(contentURI, null, null, null, null);
if (cursor == null) { // Source is Dropbox or other similar local file path
return contentURI.getPath();
} else {
cursor.moveToFirst();
int idx = cursor.getColumnIndex(MediaStore.Images.ImageColumns.DATA);
return cursor.getString(idx);
}
}
File imageFile = new File(getRealPathFromURI(selectedImage));
String path= imageFile.toString();