[펌글] Android WebView.loadData() 로 UI 출력시 한글 깨짐 문제

By | 1월 18, 2021

- 출처: 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 이상 버전

 

 

 

Subscribe
Notify of
guest
0 Comments
Inline Feedbacks
View all comments