我正在开发一个需要对齐 html 字符串的子字符串的应用程序。
问题:我使用 webview 通过以下代码设置 html 文本的对齐方式
String htmlText = "<html><body style=\"text-align:justify\"> %s </body></Html>";
WebView webView = new WebView(SubProducts.this);
webView.loadData(String.format(htmlText, description), "text/html", "utf-8");
但是当我为这样的子字符串设置相同的想法时:
String htmlText = "<html><body style=\"text-align:justify\"> %s </body></Html>";
WebView webView = new WebView(SubProducts.this);
webView.loadData(String.format(htmlText, description.substring(1,170)), "text/html", "utf-8");
在我的输出文本中 html 文本(
<html><body style=\"text-align:justify\"> %s </body></Html>)
也是可见的。如何实现这一点。有人可以帮助我吗?提前致谢。