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.
我尝试将我的应用程序的语言更改为西班牙语,但我找不到它。
Configuration c = new Configuration(getResources().getConfiguration()); c.locale = Locale.SPANISH; // does not exists
但这有效:
c.locale = Locale.ENGLISH;
有人可以帮我吗?
谢谢!
你试过了吗Locale spanish = new Locale("es", "ES");
Locale spanish = new Locale("es", "ES");
(请参阅本地化 Android)