webview加载html格式的文本

  1. String customHtml = "<html><body><font color='red'>hello baidu!</font></body></html>";

    webview.loadData(customHtml, "text/html", "UTF-8");  加载定义的代码,并设定编码格式和字符集。

你可能感兴趣的:(webview加载html格式的文本)