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.
是否可以获得应用程序支持的所有语言的列表(来自 google play 市场的应用程序)?我需要为许多应用程序执行此任务,因此最好获得最快的解决方案。但是,此时任何想法都会很好。
Locale[] locales = Locale.getAvailableLocales(); ArrayList<String> localcountries=new ArrayList<String>(); for(Locale l:locales) { localcountries.add(l.getDisplayLanguage().toString()); }
这可能对你有用。