I have two locale in my application. Can I access to resources, for example string array from different locale without to change current locale ? I mean with coding I don\'t
In Java 7 (so not android) Locale can be set differently for format resources and different for display:
Locale.setDefault(DISPLAY, Locale.PL); Locale.setDefault(FORMAT, Locale.US);
Similar thread: Changing Locale within the app itself .