我需要从网上下载一些资源,然后在本地处理它们并在BrowserActivity上显示它们。
由于资源(图片)可能非常大,我将它们保存在SD卡中。
由于
答案 0 :(得分:0)
回答问题1):您可以使用“file://”前缀来引用SD卡上的文件。见下面的例子:
String fileName = "x"; // here is the file name of the downloaded image
String imagePath = "file://" + getApplicationContext().getFileStreamPath(fileName.getAbsolutePath();
String html = html+"<img src=\"" + imagePath + "\"/>" // embed that code in your modified html source.