我已添加 apk 扩展文件并成功上传和下载,但无法使用
我的扩展文件包含图像,上传时我已经完成所有压缩并上传..
下面是我从扩展文件中获取图像的代码......
谁能帮我..我怎样才能得到图像
ZipResourceFile expansionFile = APKExpansionSupport
.getAPKExpansionZipFile(context, 1, 0);
// Get an input stream for a known file inside the expansion file
// ZIPs
InputStream is = expansionFile.getInputStream("95065668.jpg");
Log.d(TAG,
"Assigning obb image to preview image::::::::::::"
+ is.available());
BitmapFactory.Options bfo = new BitmapFactory.Options();
bfo.inPreferredConfig = Bitmap.Config.ARGB_8888;
Bitmap b = BitmapFactory.decodeStream(is, null, bfo);