0

我已添加 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);
4

1 回答 1

1

几乎你已经完成了,阅读你的 HTML 文件并将其转换为UTF-8字符串。& 加载为

webview.loadData(ur_html_str, "text/html", null);

其中 ur_html 是这样的:

String ur_html_str = "<html><body>youe body contents</body></html>";
于 2012-12-05T07:03:06.320 回答