I create an adnroid webview, to load url from server:
webView.loadUrl("http://ipaddress/myapp");
On my php server, i want to load image from android asset :
<img src="file:///android_asset/bigimage.png" />
When i run the app, the image didn't show on webview. How to handle this ? i want to speed up loading time by store big image on android asset.