Changing the locale is modifying the text dimensions of my app
问题 I'm trying to change the language on my Android app and I'm using this code: String languageToLoad = "en"; Locale locale = new Locale(languageToLoad); Locale.setDefault(locale); Configuration config = new Configuration(); config.locale = locale; getBaseContext().getResources().updateConfiguration(config, getBaseContext().getResources().getDisplayMetrics()); I've created different values directories ( \values-fr , \values-it , etc.) where I put my string.xml files. Changing the language works