我有一个字符串,其中包含从 json 文件解析的 html 文本和图像。我需要显示它webview
。该字符串由 3-4 个段落组成,但在显示时webview
显示为一个段落,即 androidwebview
跳过了断线标签。但我的要求是在正确对齐的网站中显示。请帮助我。
我的 Json 文件链接是这个
我的webview
代码是
//newsContent contains the json string after parsing.
String all="<html><body>"+newsContent+"</body></html>";
tv.getSettings().setJavaScriptEnabled(true);
tv.getSettings().setPluginsEnabled(true);
tv.getSettings().setSupportZoom(false);
tv.getSettings().setAllowFileAccess(true);
WebSettings webSettings = tv.getSettings();
tv.getSettings().setAllowFileAccess(true);
webSettings.setTextSize(WebSettings.TextSize.NORMAL);
tv.loadDataWithBaseURL(null,all, "text/html", "UTF-8", null);