web-dev-qa-db-fra.com

Comment charger une chaîne html dans une webview?

j'ai une chaîne html contenant ceci:

    <!DOCTYPE HTML PUBLIC \"-//W3C//DTD HTML 4.01 Transitional//EN\">
    <html>
      <head>
      <meta http-equiv="content-type" content="text/html; charset=windows-1250">
      <meta name="spanish press" content="spain, spanish newspaper, news,economy,politics,sports">  
      <title></title>
      </head>
      <body id="body">  
<!-- The following code will render a clickable image ad in the page -->
        <script src="http://www.myscript.com/a"></script>
      </body>
    </html>

Je dois montrer ce site Web dans une vue Web sous Android.

J'ai essayé avec tout ça:

webView.loadDataWithBaseURL(null, txt, "text/html", "UTF-8", null);
webView.loadDataWithBaseURL("x-data://base", txt, "text/html", "UTF-8", null);      
webView.loadDataWithBaseURL("notreal/", txt, "text/htm", "utf-8",null);

Aussi, j'ai essayé de supprimer la balise DOCTYPE:

txt=txt.replace("<!DOCTYPE HTML PUBLIC \"-//W3C//DTD HTML 4.01 Transitional//EN\">", "");

Aucun d'entre eux n'a de travail. Je viens juste de réussir à afficher la chaîne dans la vue Web (le code html), mais pas le site Web qui doit être créé avec ce code html.

Qu'est-ce qui ne va pas?

46

Pour charger vos données dans WebView. Appelez la méthode loadData () de WebView

wv.loadData(yourData, "text/html", "UTF-8");

Vous pouvez vérifier cet exemple

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

[Modifier 1]

Vous devez ajouter -\- avant - "- par exemple -> name = \" appuyez sur\"en espagnol"

en dessous de la chaîne a fonctionné pour moi

String webData =  "<!DOCTYPE html><head> <meta http-equiv=\"Content-Type\" " +
"content=\"text/html; charset=utf-8\"> <html><head><meta http-equiv=\"content-type\" content=\"text/html; charset=windows-1250\">"+
 "<meta name=\"spanish press\" content=\"spain, spanish newspaper, news,economy,politics,sports\"><title></title></head><body id=\"body\">"+
"<script src=\"http://www.myscript.com/a\"></script>şlkasşldkasşdksaşdkaşskdşk</body></html>";
106
skaya129

lire à partir d'un fichier html

ViewGroup webGroup;
  String content = readContent("content/ganji.html");

        final WebView webView = new WebView(this);
        webView.loadDataWithBaseURL(null, content, "text/html", "UTF-8", null);

        webGroup.addView(webView);
4
user4853971

Vous pouvez aussi essayer ceci

   final WebView webView = new WebView(this);
            webView.loadDataWithBaseURL(null, content, "text/html", "UTF-8", null);
3
M.Ganji

J'ai eu la même exigence et je l'ai fait de la manière suivante. Vous pouvez également essayer ceci ..

Utiliser la méthode loadData

web.loadData("<p style='text-align:center'><img class='aligncenter size-full wp-image-1607' title='' src="+movImage+" alt='' width='240px' height='180px' /></p><p><center><U><H2>"+movName+"("+movYear+")</H2></U></center></p><p><strong>Director : </strong>"+movDirector+"</p><p><strong>Producer : </strong>"+movProducer+"</p><p><strong>Character : </strong>"+movActedAs+"</p><p><strong>Summary : </strong>"+movAnecdotes+"</p><p><strong>Synopsis : </strong>"+movSynopsis+"</p>\n","text/html", "UTF-8");

movDirector movProducer, comme tous, est ma variable chaîne.

En bref, je conserve un style personnalisé pour mon URL.

0
Nitin Bathija