使用WebView.loadDataWithBaseURL加载H
2018-04-11 本文已影响0人
Drc15H
我们在使用WebView.loadDataWithBaseURL("file:///android_asset/", html, "text/html", "UTF-8", null)加载html片段时,若html字符串中包含换行符"\n",在WebView中并不会将换行显示出来,这时我们需要在加载html片段前,将"\n"全部替换为"< br >"标签即可。
我们在使用WebView.loadDataWithBaseURL("file:///android_asset/", html, "text/html", "UTF-8", null)加载html片段时,若html字符串中包含换行符"\n",在WebView中并不会将换行显示出来,这时我们需要在加载html片段前,将"\n"全部替换为"< br >"标签即可。