Can I access to resources from different locale android?

前端 未结 4 1578
执念已碎
执念已碎 2020-12-01 19:26

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

4条回答
  •  攒了一身酷
    2020-12-01 19:33

    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 .

提交回复
热议问题