From 7319b62b316c6b1ebf3b6ee9ea7fe4687423a4df Mon Sep 17 00:00:00 2001 From: LiuXiang Date: Mon, 6 Nov 2017 18:46:29 +0800 Subject: [PATCH] Update README.md --- README.md | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) diff --git a/README.md b/README.md index e84c9f8..205d982 100644 --- a/README.md +++ b/README.md @@ -1,2 +1,20 @@ # AndroidMultiLanguage 完美实现Android的多语言切换,国际化 +应该是WebView在使用过程中会设置语言 , 比如说你在中国打开Facebook的网站 , 你的网页就是中文的 , 如果是美国就是英文的 , 这可能就是原因 . + + + 在使用到WebView的页面的onPause中 , 重新设置语言. + + @Override + protected void onPause() { + super.onPause(); + Resources resources = getResources(); + Configuration configuration = resources.getConfiguration(); + DisplayMetrics displayMetrics = resources.getDisplayMetrics(); + if (isChina) { + configuration.locale = Locale.CHINA; + } else { + configuration.locale = Locale.ENGLISH; + } + resources.updateConfiguration(configuration, displayMetrics); + }