我想将我的图像存储在blob-s中的sqlite数据库中,并可能对它们进行加密。 是否可以将Android-Universal-Image-Loader与sqlite数据库中的图像一起使用?
答案 0 :(得分:21)
UIL不支持SQLite DB开箱即用的图像。但是你可以自己添加这个支持,你只需要提出新的方案/协议名称(例如 db:// ),实现自己的ImageDownloader
并将其设置为配置。
例如:
让我们选择自己的方案db
,这样我们的URI就会像" db://..." 。
然后实施ImageDownloader
。我们应该使用我们的方案捕获URI,解析它,在数据库中查找所需的数据并为其创建InputStream
(它可以是ByteArrayInputStream
)。
public class SqliteImageDownloader extends BaseImageDownloader {
private static final String SCHEME_DB = "db";
private static final String DB_URI_PREFIX = SCHEME_DB + "://";
public SqliteImageDownloader(Context context) {
super(context);
}
@Override
protected InputStream getStreamFromOtherSource(String imageUri, Object extra) throws IOException {
if (imageUri.startsWith(DB_URI_PREFIX)) {
String path = imageUri.substring(DB_URI_PREFIX.length());
// Your logic to retreive needed data from DB
byte[] imageData = ...;
return new ByteArrayInputStream(imageData);
} else {
return super.getStreamFromOtherSource(imageUri, extra);
}
}
}
然后我们将此ImageLoader
设置为配置:
ImageLoaderConfiguration config = new ImageLoaderConfiguration.Builder(context)
...
.imageDownloader(new SqliteImageDownloader(context))
.build();
ImageLoader.getInstance().init(config);
然后我们可以执行以下操作来显示来自DB的图像:
imageLoader.displayImage("db://mytable/13", imageView);