在android中的webview中嵌入一段HTML代码或Javascript脚本

时间:2012-06-06 06:42:29

标签: javascript android html embed android-webview

我得到了一小段包含统计信息的Javascript和HTML代码,我想在我的Android应用中嵌入到WebView中。我该怎么做呢。有人可以通过示例和示例代码向我建议。请帮忙

3 个答案:

答案 0 :(得分:5)

您可以创建html页面并放置资产文件夹并在webview中加载html页面。

使用此代码:

webView.loadUrl("file:///android_asset/index.html");

答案 1 :(得分:4)

  WebView webView;

String htmlPre = "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"></head><body style='margin:0; pading:0; background-color: black;'>";  
    String htmlCode = 
            " <embed style='width:100%; height:100%' src='http://www.platipus.nl/flvplayer/download/1.0/FLVPlayer.swf?fullscreen=true&video=http://www.platipus.nl/flvplayer/download/pl-600.flv&autoplay=true' " +
            "  autoplay='true' " +
            "  quality='high' bgcolor='#000000' " +
            "  name='VideoPlayer' align='middle'" + // width='640' height='480' 
            "  allowScriptAccess='*' allowFullScreen='true'" +
            "  type='application/x-shockwave-flash' " +
            "  pluginspage='http://www.macromedia.com/go/getflashplayer' />" +
            "";
    String htmlPost = "</body></html>";

@Override
public void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    setContentView(R.layout.main); 

    webView = (WebView)findViewById(R.id.webview);

webView.loadDataWithBaseURL("null", htmlPre+htmlCode+htmlPost, "text/html", "UTF-8", null); 

}

以上示例使用webView中的html代码。

答案 2 :(得分:1)

您可以复制资产中的HTML,然后将其显示在WebView中,如下所示:

webView.loadUrl("file:///android_asset/index.html");

其中webView是您的 WebView对象index.html是您的 html源文件