Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
可能重复: Android 上支持的语言/区域列表是什么?
在我的 android 应用程序中,我想通过该特定设备获取支持语言的列表。请任何人告诉我他们有什么方法可以做到这一点
你可以试试这个
Locale[] locs= Locale.getAvailableLocales(); for(Locale l:locs){ Log.d(tag, l.getDisplayLanguage()); }