I have WebView with images, all works fine, but if i disable network connection. Open my webview with images, i'll get an ungly non-image. How i can replace default "no-image" with custom image? Have somebody ideas?
i use loadData and cached file.
> String customHtml = "<html><body><h1>Hello,</h1>" +
> "<img src=\"http://somesite.com/image.jpg\">" +
> "</body></html>";
> webView = (WebView) findViewById(R.id.MyWebView);
> webView.loadData(customHtml, "text/html; charset=utf-8", "UTF-8");
ps. Sorry for my bad english.