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

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


WebView webView = new WebView();
String htmlString = "WebView Test Page!";
webView.loadData(htmlString,"text/html","utf-8");

  

.