可以使用WebView的loadData()方法来展示html字符串。下面是一个简单的示例:
String htmlString = "This is a title Hello, world!
This is some sample text.
";
WebView webView = findViewById(R.id.my_webview);
webView.getSettings().setJavaScriptEnabled(true); // 允许执行JavaScript代码
webView.loadData(htmlString, "text/html", null);
其中,loadData()方法的第一个参数是要展示的html字符串,第二个参数指定了html字符串的数据类型为"text/html",最后一个参数可传递一些附加的headers。这样,当WebView加载完成后,就会显示htmlString中的内容。