0

ブラウザに表示する必要がある次のスクリプトがあります。WebView loadData および loadDataWithBaseURL をロードしようとしましたが、成功しませんでした (空のビュー)。おそらく、MIME、エンコーディングなどで何かを見逃しています。

<head>
<meta name='viewport' content='width=device-width'/>
<script type='text/javascript'     src='http://www.googletagservices.com/tag/js/gpt_mobile.js'></script>
    <script type='text/javascript'>eval(window.location.search.substring(1));googletag.cmd.push(function(){googletag.defineSlot('/7047/AppCamoli_Iphone_Transition_Splash',[320,480],'div-gpt-ad-2935936626049-0').addService(googletag.pubads());googletag.enableServices();});</script>
</head>
<body style="margin:0; padding: 0;">
<div id='div-gpt-ad-2935936626049-0'>
    <script type='text/javascript'>
        document.getElementById('div-gpt-ad-2935936626049-0').id='div-gpt-ad-2935936626049-0';googletag.cmd.push(function(){googletag.display('div-gpt-ad-2935936626049-0')});
    </script>
</div>
</body>

私が持っているコードは次のとおりです。

public void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    setContentView(R.layout.web);

    try {
        webView = (WebView) findViewById(R.id.webView1);
        webView.getSettings().setJavaScriptEnabled(true);
        Intent i = getIntent();
        boolean typeURL = i.getBooleanExtra("urlType", true);
        String url = i.getStringExtra("url");
        if (typeURL)
            webView.loadUrl(url);
        else {
            //String html = "<html><body>You scored <b>hello world</b> points.</body></html>";
            String html = "<html><head><meta name='viewport' content='width=device-width'/><script type='text/javascript' src='http://www.googletagservices.com/tag/js/gpt_mobile.js'></script><script type='text/javascript'>eval(window.location.search.substring(1));googletag.cmd.push(function(){googletag.defineSlot('/7047/AppCamoli_Iphone_Transition_Splash',[320,480],'div-gpt-ad-2935936626049-0').addService(googletag.pubads());googletag.enableServices();});</script></head><body style='margin:0; padding: 0;'><div id='div-gpt-ad-2935936626049-0'><script type='text/javascript'>document.getElementById('div-gpt-ad-2935936626049-0').id='div-gpt-ad-2935936626049-0';googletag.cmd.push(function(){googletag.display('div-gpt-ad-2935936626049-0')});</script></div></body></html>";
            //webView.loadDataWithBaseURL(null, html, "text/javascript", "UTF-8", null);
            webView.loadData(html, "text/javascript", "UTF-8");
        }
    } catch (Exception e) {
        Log.e("webView","failed to load URL");
        e.printStackTrace();
    }
}

これにより、空の webView が生成されます。

ありがとう、

サイモン

4

2 に答える 2

0

このリンクに答えがあります。

「あなたは彼が追加するチュートリアルの部分を見逃しました

webView.setWebChromeClient(new WebChromeClient());

追加直後

webView.getSettings().setJavaScriptEnabled(true);"
于 2013-10-22T17:25:31.740 に答える