代码实现改变语言

 Resources res = context.getResources(); 
   
// Change locale settings in the app. 
   
DisplayMetrics dm = res.getDisplayMetrics(); 
    android
.content.res.Configuration conf = res.getConfiguration(); 
    conf
.locale = new Locale(language_code.toLowerCase()); 
    res
.updateConfiguration(conf, dm); 

你可能感兴趣的:(android)