La balise Html List ne fonctionne pas dans Android TextView. Voici le contenu de ma chaîne :
String str="A dressy take on classic gingham in a soft, textured weave of stripes that resembles twill. Take a closer look at this one.<ul><li>Trim, tailored fit for a bespoke feel</li><li>Medium spread collar, one-button mitered barrel cuffs</li><li>Applied placket with genuine mother-of-pearl buttons</li><li>;Split back yoke, rear side pleats</li><li>Made in the U.S.A. of 100% imported cotton.</li></ul>";
Je l'ai chargé dans une vue de texte comme ceci :
textview.setText(Html.fromHtml(str));
La sortie ressemble à un paragraphe. Que puis-je faire ? Existe-t-il une solution ?
Edit :
webview.loadData(str,"text/html","utf-8");
1 votes
Devrait être text/html et non texl/html.