Come passare la stringa HTML alla visualizzazione Web su Android


141

Ciao sto analizzando xml e poi caricandolo in vista web, dopo aver analizzato sto creando quattro stringhe in modo da poter aggiungere tutte le stringhe a una vista. Sono in grado di ottenere due viste sulla vista Web ma non le prime due stringhe.

Pls mi suggerisce con il mio codice, dove sto sbagliando e qual è il modo corretto per ottenere le stringhe HTML formattate nella vista web. Dai un'occhiata al mio codice e aiutami a risolvere questo problema.

@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;
    }
}

Sono in grado di ottenere il capitolo capitolo e il contenuto del capitolo sulla vista Web, ma non le prime due stringhe per favore aiutatemi amici.

Risposte:


190

ho fatto con successo da sotto la linea

 //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", "");

lo aggiungi a <head> su index.php / index.html?
Mthe beseti,

1
se vuoi, altrimenti andrà bene
Siddhpura tra

Aggiorna l'interfaccia utente dopo un po 'di ritardo. Come risolvere quella cosa?
Narendra Singh,

posso usare "text / html", "UTF-8", se voglio passare l'html alla funzione javascript usando webView.loadUrl ("javascript: MyFunction (data," text / html "," UTF-8 ")?
user1788736

No, non l'ho mai usato in questo modo
Siddhpura nel

168

Per caricare i tuoi dati in WebView. Chiama il metodo loadData () di WebView

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

Puoi controllare questo esempio

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


ci ho provato, ma non è ancora successo, ho provato anche con loadbaserul
cavallo,

dovrebbe funzionare con una stringa contenente javascript? Non funziona per me
Edu,

27
dovrebbe esserewebView.loadData(yourData, "text/html; charset=utf-8", "UTF-8");
Jaroslav

5
"Text / html; charset = utf-8" fa una grande differenza, i caratteri simbolo non vengono visualizzati correttamente senza di essa.
Mic Fok,

29

Passare null sarebbe meglio. I codici completi sono come:

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

lo aggiungi a <head> su index.php / index.html?
Mthe beseti,

@mthethelelibeseti si tratta di codici Android, non di HTML. O ho frainteso la tua domanda?
Jeffrey Neo,

È la soluzione di lavoro per tutti i tipi di stringhe HTML. Grazie @JeffreyNeo
Akash Bisariya l'

2

Il caricamento di dati normali non funzionava per me, la conversione in Base64 funzionava bene.

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");

Trova i dettagli su WebView

Utilizzando il nostro sito, riconosci di aver letto e compreso le nostre Informativa sui cookie e Informativa sulla privacy.
Licensed under cc by-sa 3.0 with attribution required.