How can I add my Script to loaded code from URL? I try to use AsyncTask, send http request and set code to WebView, but then is not loading images and page dosn't work well.
@Override
protected void onPostExecute(String result) {
webView.loadData( result, "text/html", "UTF-8" );
}
I doing something wrong ?
loadDataWithBaseURLis better when you try to load webview data with Script at runtime ..