在Android 中,Context 几乎无处不在。最常见的Activity 本身就是一个Context,而所有的
View 在构造时,都必须传入Context;而且,同一个App,使用的BaseContext 是共享的。
所以通过Context 来确定当前应用的Locale 可以说是最安全,也最有效的。这里,我们以在
Activity 中onCreate(Bundle savedInstanceState)方法中获取Locale 来示例,代码如下:
Resources res = this.getResources();
Configuration cfg = res.getConfiguration();
Locale locale = cfg.locale;
res.updateConfiguration(cfg, null);
setContentView(R.layout.xxxx);