androidでwebviewにhtml文字列を渡す方法


141

こんにちは私はxmlを解析し、それをWebビューにロードしています。解析後、4つの文字列を作成して、すべての文字列を1つのビューに追加できるようにしています。Webビューで2つのビューを取得できますが、最初の2つの文字列は取得できません。

Plsは私のコードを教えてくれますが、どこが間違っているのか、WebビューでフォーマットされたHTML文字列を取得する正しい方法は何ですか?Plsは私のコードを見て、この問題を解決するのに役立ちます。

@Override
    public View getView(int position, View convertView, ViewGroup parent) {
        // TODO Auto-generated method stub
        String chapterTitle = "";
        String SubChapterTitle="";
        String chapterIntro ="";
        String chapterContent="";
        View view = convertView;
        if (convertView == null) {
            // view = inflater.inflate(resourceid, null);
            view = getLayoutInflater().inflate(R.layout.webviewitem, null);
        }
        synchronized (view) {
            WebView wv = (WebView) view.findViewById(R.id.contentWebView);

            WebSettings settings = wv.getSettings();
            settings.setUseWideViewPort(true);
            settings.setLoadWithOverviewMode(true);
            settings.setJavaScriptEnabled(true);
            settings.setDefaultZoom(ZoomDensity.FAR);
            // wv.setBackgroundColor(0);
            wv.setVerticalScrollBarEnabled(false);
            wv.setHorizontalScrollBarEnabled(false);
            /*String txtChapTitle = Intro.book.getsecretList().get(position)
                    .getChtitle().toString();*/

            if (!(Intro.book.getsecretList().get(position).getChtitle()
                    .toString().equals(""))){
            chapterTitle = "<b><fontSize=4>"+Intro.book.getsecretList().get(position)
            .getChtitle().toString()+"</font></b>";
            }
            if (!(Intro.book.getsecretList().get(position)
                    .getSubtitle() == null)) {
                SubChapterTitle = "<b><fontSize=4>"+Intro.book.getsecretList().get(position)
                .getSubtitle().toString()+"</font></b>";
            }
            if (!(Intro.book.getsecretList().get(position)
                    .getIntro() == null)) {
            chapterIntro = "<b><fontSize=2>"+Intro.book.getsecretList().get(position)
                .getIntro().toString()+"</font></b>";
            }
            if (!(Intro.book.getsecretList().get(position)
                    .getContent() == null)) {
            chapterContent = "<fontSize=2>"+Intro.book.getsecretList().get(position)
                .getContent().toString()+"</font>";
            }

            StringBuilder content = new StringBuilder();
            content.append(chapterTitle+SubChapterTitle+chapterIntro+chapterContent);

            JsInterface Jsi = new JsInterface();
            Jsi.wordDef = content ;
            Log.v("Content", "" +content);
            wv.addJavascriptInterface(Jsi, "interfaces");

            wv.setWebViewClient(new WebViewClient() {
                @Override
                public void onPageFinished(WebView view, String url) {
                    view.setHapticFeedbackEnabled(false);
                }
            });

            wv.setWebChromeClient(new WebChromeClient() {
                @Override
                public boolean onJsAlert(WebView view, String url,
                        String message, JsResult result) {
                    return super.onJsAlert(view, url, message, result);
                }
            });

            wv.loadUrl("file:///android_asset/wordview.html");
        }
        return view;
    }
}

私はウェブビューでchapterIntroとchaptercontentを取得できますが、最初の2つの文字列plは友達を助けることができません。

回答:


190

私は以下の行で成功しました

 //data == html data which you want to load 
 WebView webview = (WebView)this.findViewById(R.id.webview);
 webview.getSettings().setJavaScriptEnabled(true);
 webview.loadDataWithBaseURL("", data, "text/html", "UTF-8", "");

これをindex.php / index.htmlの<head>に追加しますか?
Mthe beseti 2014年

1
yaよろしければ、それ以外は問題ありません
Siddhpura Amit

少し遅れてUIを更新します。それを修正する方法は?
Narendra Singh

webView.loadUrl( "javascript:MyFunction(data、" text / html "、" UTF-8 ")を使用してHTMLをJavaScript関数に渡したい場合、" text / html "、" UTF-8 "を使用できますか?
user1788736

いいえ、このように使用したことはありません
Siddhpura Amit

168

WebViewにデータをロードします。WebViewのloadData()メソッドを呼び出す

webView.loadData(yourData, "text/html; charset=utf-8", "UTF-8");

この例を確認できます

http://developer.android.com/reference/android/webkit/WebView.html


私はそれを試しましたが、まだ起こりません。loadbaserulも試しました
cavallo

それはjavascriptを含む文字列で動作するはずですか?それは私のために機能していません
Edu 2013年

27
それはする必要がありますwebView.loadData(yourData, "text/html; charset=utf-8", "UTF-8");
ヤロスラフ2014年

5
「text / html; charset = utf-8」は大きな違いをもたらします。シンボル文字は、それなしでは適切にレンダリングされません。
Mic Fok 2014

29

nullを渡すことをお勧めします。完全なコードは次のようなものです。

WebView wv = (WebView)this.findViewById(R.id.myWebView);
wv.getSettings().setJavaScriptEnabled(true);
wv.loadDataWithBaseURL(null, "<html>...</html>", "text/html", "utf-8", null);

これをindex.php / index.htmlの<head>に追加しますか?
Mthe beseti 2014年

@mthethelelibesetiこれはHTMLではなくAndroidコードです。それともあなたの質問を誤解しましたか?
Jeffrey Neo

これは、すべてのタイプのHTML文字列の実用的なソリューションです。ありがとう@JeffreyNeo
Akash Bisariya

2

通常のデータのロードは私にとってはうまくいかず、Base64への変換はうまくいきました。

String unencodedHtml ="<html><body>'%28' is the code for '('</body></html>";
tring encodedHtml = Base64.encodeToString(unencodedHtml.getBytes(), Base64.NO_PADDING);
webView.loadData(encodedHtml, "text/html", "base64");

WebViewの詳細を見つける

弊社のサイトを使用することにより、あなたは弊社のクッキーポリシーおよびプライバシーポリシーを読み、理解したものとみなされます。
Licensed under cc by-sa 3.0 with attribution required.