所以通过Context 来确定当前应用的Locale 可以说是最安全,也最有效的。这里,我们以在 Activity 中onCreate(Bundle savedInstanceState)方法中获取Locale 来示例,代码如下:Resources res = this.getResources();Configuration cfg = res.getConfiguration();Locale locale = cfg.locale;res.updateConfiguratio...