Change the language of the device to test if the application works correctly in different languages, I found the following code in Java
String languageToLoad = "en"; // your language
Locale locale = new Locale(languageToLoad);
Locale.setDefault(locale);
Configuration config = new Configuration();
config.locale = locale;
getBaseContext().getResources().updateConfiguration(config,
getBaseContext().getResources().getDisplayMetrics());
Remember to put it in front of the setContentView
in OnCreate of the Activity
What other methods do you use to test the applications you do on Android in multi-language support, if you use an emulator?