Html 문자열을 WEBVIEW에 출력하는 방법

Posted by Breeze24
2016. 6. 4. 23:39 Android/TroubleShooting
Html 문자열을 WEBVIEW에 출력하는 방법


1
2
3
WebView webView = new WebView();
String htmlString = "<b>WebView Test Page!</b>";
webView.loadData(htmlString,"text/html","utf-8");

  

.