Dans mon projet, j'ai un fichier:
"MyProject/assets/folder1/image1.jpg"
"MyProject/assets/folder1/index.html".
Dans webView, je dois ouvrir index.html (avec des images).
J'essaie ce code:
String baseUrl = "file:///Android_asset/folder1/";
webView.loadDataWithBaseURL(baseUrl, readFileAsString("index.html") , mimeType, "UTF-8", null);
Mais les images ne chargent pas.
Si je mets des images dans le répertoire " assets " (MyProject/assets/
) et que je crée baseUrl = "file:///Android_asset"
, les images sont chargées correctement;
Comment charger des images non seulement à partir du répertoire des ressources racine, mais également à partir de assets/folder1
?
essayez comme ça
WebView webview = (WebView)this.findViewById(R.id.webview);
String html = "<html><head><title>TITLE!!!</title></head>";
html += "<body><h1>Image?</h1><img src=\"icon.png\" /></body></html>";
webview.loadDataWithBaseURL("file:///Android_res/drawable/", html, "text/html", "UTF-8", null);
Pour plus d'informations essayez ceci link
parfait LoadDataWithBaseurl
Je pense que vous devez définir la base sur les actifs et ajouter les sous-dossiers à votre image src comme ceci:
webView.loadDataWithBaseURL("file:///Android_asset/", readAssetFileAsString("folder1/index.html"), "text/html", "UTF-8", null);
Html: <img src="folder1/image1.jpg">
Cela a fonctionné pour moi sur Android 5.1
private String readAssetFileAsString(String sourceHtmlLocation)
{
InputStream is;
try
{
is = getContext().getAssets().open(sourceHtmlLocation);
int size = is.available();
byte[] buffer = new byte[size];
is.read(buffer);
is.close();
return new String(buffer, "UTF-8");
}
catch(IOException e)
{
e.printStackTrace();
}
return "";
}
essayer d'aimer ça
try {
String filePath = null;
filePath = "Your File path";
Bitmap bitmap = null;
bitmap = BitmapFactory.decodeFile(filePath);
Log.v("Image data-->", "" + bitmap);
imageWidth = bitmap.getWidth();
imageHeight = bitmap.getHeight();
Log.e("Width", "" + imageWidth);
filePath = "file://" + filePath;
String html = "<html xmlns=\"http://www.w3.org/1999/xhtml\"><head><meta http-equiv=\"Content-Type\" content=\"text/html\";charset=utf-8\"/><title></title></head><body style=\"width:"
+ imageWidth
+ "px; height:"
+ imageHeight
+ "px; background:url("
+ filePath
+ ") no-repeat; position:relative;\">"
+ getDivTag(mapList)
+ "</body></html>";
Log.v("MIS", "" + html);
webview.getSettings().setSupportZoom(true);
webview.loadDataWithBaseURL(null, html, "text/html", "utf-8", null);
System.out.println(html);
} catch (Exception e) {
e.printStackTrace();
}