I have a webview :
this.webview.loadUrl("file:///android_asset/html/test.html");
in test.html i would like to write this :
<img src="file:///data/data/com.myapp/myimage.jpg" />
I doesn't work for me so i found another topic saying i could use a contentProvider but i guess the purpose is different as i don't want to display only one image but i need references to images stored inside the interna memory to build a full designed HTML page ... is thre something i missed ? ( gotta try to root the device to check that the pictures are well written inside it).
Many thanks :)