Android WebView loadUrl并添加脚本

时间:2014-01-19 12:20:54

标签: javascript android

如何将我的Script添加到网址中加载的代码?我尝试使用AsyncTask,发送http请求并将代码设置为WebView,但后来却没有加载图片,而且页面效果不佳。

        @Override
    protected void onPostExecute(String result) {
        webView.loadData( result, "text/html", "UTF-8" );
    }

我做错了什么?

1 个答案:

答案 0 :(得分:2)

如果要运行html文件运行时,请尝试使用此代码。

 webView.loadDataWithBaseURL("file:///android_asset/", result, "text/html", "UTF-8",null);

并确保您是否要使用任何css或javascript文件,然后将其放入android assest文件夹..