Posted by Neelansh Sahai Android Developer Relations Engineer (on Twitter and LinkedIn)What if in case you have a set of customers who’re fairly fluent in English, Hindi, and Spanish, and so they have a information app on their telephones and like to learn the information in Hindi? For his or her texting app, they like Spanish as they’ve some family and friends who they textual content with in Spanish. However for ease of entry, they nonetheless choose their gadget to be in English. Now there are numerous such use-cases the place the customers would possibly need their app languages to be totally different from their system language. Fascinating!
Construct on your multilingual customers
This weblog focuses on how one can combine the Per-App Language Preferences API in your app to supply your customers the pliability to decide on totally different languages for various apps.
1. Customers can change the language settings from system settings by deciding on:
Settings → System → Languages & Enter → App Languages → [Select the desired App] → [Select the desired Language]
2. In case your app already has an in-app language picker, you may combine the Per-App Language Preferences API to leverage the complete platform assist. For pre-Android 13 customers, the system settings received’t be seen, however builders can nonetheless present an in-app language picker.
Learn how to combine this function in your app?
There are 5 steps that should be adopted whereas engaged on the Per-App Language Preferences function, listed right here →
1. Create locale_config.xml file
Create a brand new file in values/xml/ listing and title it as locale_config.xml. This file ought to comprise a listing of all of the locales which can be supported by the app. The checklist aspect must be a string containing a locale tag.
locale_config.xml
2. Add the locale_config within the AndroidManifest.xml
Specify this locale_config.xml file within the app’s AndroidManifest.xml
AndroidManifest.xml
After steps 1 & 2, your customers will be capable to uncover and set their language desire on your app from system settings on units working Android 13 or greater. In case your customers are on units working on variations decrease than Android 13, you may present an in-app language picker. Optionally, you may as well embrace the identical language picker in your app for units working Android 13 or greater. When your app contains an in-app language picker, it is necessary for the person’s preferences to be in sync between the system and the app. That is the place the AndroidX APIs come into the image. Learn on to learn to create an in-app language picker.
Use the most recent model of AppCompat Library
4. Use AndroidX APIs
Use the APIs in your code to set and get the app locales.
MainActivity.kt
5. Delegate storage to AndroidX
Let AndroidX deal with the locale storage in order that the person’s desire persists.
AndroidManifest.xml
Steps 3, 4, & 5 above show the minimal parts wanted to create an in-app language picker.
And with this, your app can now assist locale switching.
Extra issues to handle whereas migrating to the API
Earlier, builders needed to deal with the person’s preferences on their very own, both by utilizing SharedPreferences, storing the information on a server, or different app logic. With the new APIs, there isn’t any must deal with this individually. So when you find yourself utilizing these APIs, AndroidX is already caring for the storage half, however what occurs when the app is opened for the primary time after a person updates their gadget to Android 13 or greater?
On this case, the system received’t concentrate on the person’s preferences for the app language and thus it’s going to map the app to the default system language. To keep away from this, builders want so as to add some one-time migration logic in order that their customers don’t should set the language once more after they replace the app.
What flexibility does the function present to the customers and builders?
Right here are some things that may show to be useful for you customers.
- All units working Android 13 or greater may have a typical place for customers to find and alter the language of their apps.
- Though the system settings are restricted to the units working Android 13 or greater, the AndroidX APIs are backwards appropriate. Thus, there isn’t any requirement so as to add OS Model checks in your code whereas constructing on your multilingual customers.
- Builders don’t must deal with configuration adjustments individually or fear about storing the person’s chosen language each time. The API handles configuration adjustments and shops the language preferences for you.
- Works with different Android options like Backup and restore. If a person switches to a brand new gadget and restores the beforehand backed up information, your app will retain the person’s final most well-liked language, thus offering your customers with a greater and extra seamless expertise.
Recap
With that, most components of the function are coated. So let’s have a fast recap on what we mentioned in immediately’s learn.
- A fast learn on what Per-App Language Preferences provide to multilingual customers and app builders.
- What finish customers will see on their units.
- Learn how to migrate your app to the Per-App Language Preferences APIs.
- A number of issues that should be taken care of whereas migrating to the APIs to make sure a greater person expertise.
- Lastly, the advantages that finish customers and builders can leverage from this function.