我正在使用 glide 来在我的 GridView 中设置图像,并且我正在使用一个名为 IOcipher 的库,它提供了一个虚拟加密磁盘,所以我使用info.guardianproject.iocipher.File
而不是java.io.file
. 但是 glide 无法加载图像,并且它有一个错误说:
E/Glide:com.bumptech.glide.load.engine.GlideException 类:加载资源失败
有什么办法可以加载图像吗?我尝试了很多不同的方法:(
file.getPath()
返回/data/user/0/com.example.zeinab.amndoorbin/app_vfs/myfiles.db/1502685968291.jpg
Glide.with(mContext)
.load(file.getPath()) // Uri of the picture
.into(imageView);