我有一個字符串,其中包含從json文件解析的html文本和圖像。我需要在webview
中顯示它。字符串由3-4段組成,但在顯示webview
時顯示爲像一個段落,即android webview
跳過breakline tags.But我的要求是顯示,因爲它在網站上正確alignment.Please幫我。如何以適當的格式在Android WebView中顯示html文本?
我的JSON文件鏈接this
和我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);
你能告訴我們你的JSON和代碼? – Vinay
@ambrish:我編輯了我的問題,請參閱。當我正在處理一個大項目時,我無法在這裏顯示整個代碼。 –
我相信Json標籤在WebView中無法正常工作 – Sameer