- 출처: http://www.acidzazz.com/2012/12/webview.html -
Load할 data가 "UTF-8" 일때,
WebView mWebView = (WebView)findViewById(R.id.webView1);
mWebView.getSettings().setDefaultTextEncodingName("UTF-8"); // 내 경우는 이건 딱히 추가하지 않음
String str = "한글";
mWebView.loadData(str, "text/html", "UTF-8"); // Android 4.0 이하 버전
mWebView.loadData(str, "text/html; charset=UTF-8", null); // Android 4.1 이상 버전