How to get a list of languages โ€‹โ€‹in Android

Hi I need to get a list of languages โ€‹โ€‹defined on my Android device and would like to populate Spinner with the language code and language name. How can i do this?

Thanks in advance and hello s.

+4
source share
2 answers
+2
source

Using:

Resources.getSystem().getAssets().getLocales(); 
+2
source

Source: https://habr.com/ru/post/1335432/


All Articles