0

私はAndroid WebViewを使用しています。私の目的は、レンダリングする前にhtmlを解析することです

これを行うには、次の JavaScript を pagefinish イベントの webview に追加しました。

public void onPageFinished(WebView view, String url)
{
    view.loadUrl("javascript:varhtmlString=document.getElementsByTagName('html')[0].innerHTML;"
                 +"document.getElementsByTagName('html')[0].innerHTML=window.HTMLOUT.parseHTML(htmlString);");              
}

しかし問題は、解析 html の前にフラッシュバック (元の html) が表示されることです

次に、ログを監視し、javascript が pageFinish の後に (非同期で) 実行されていることを発見しました。

それでも同じ問題が元のhtmlが解析前に表示されます

レンダリングする前にhtmlを変更する方法はありますか????

4

1 に答える 1

1

次の方法で実行できます。

String content = getContentForUrl(url);
String manipulateHTML  = manipulate(content); // your function to adjust the content.

webView.loadDataWithBaseURL(url, manipulateHTML, "text/html","UTF-8", null);

public String getContentForUrl(String url) {

    BufferedReader in = null;

    String content = "";

    try {
        HttpClient client = new DefaultHttpClient();
        HttpGet request = new HttpGet(url);
        HttpResponse response = client.execute(request);

        in = new BufferedReader(new InputStreamReader(response.getEntity()
                .getContent()));

        StringBuffer sb = new StringBuffer("");
        String line = "";
        String NL = System.getProperty("line.separator");

        while ((line = in.readLine()) != null) {
            sb.append(line + NL);
        }

        in.close();
        content = sb.toString();

        Log.d("MyApp", "url content for " + url + " " + content);

    } catch (Exception e) {

        Log.d("MyApp",
                "url content for " + url + " Exception :" + e.toString());

    } finally {
        if (in != null) {
            try {
                in.close();
            } catch (IOException e) {
                e.printStackTrace();
            }
        }
    }

    return content;
}
于 2013-02-04T07:54:35.070 に答える