I created a set of text resources in different languages:
- res/values-de/strings.xml
- res/values-fr/strings.xml
- res/values-ja/strings.xml
when a user runs our application, the Android system selects which resources to load, based on the device's locale.
So basically I want to add language option in my application and save user language preference, then load text resources based on user preference.
Is there any way to do this?