我在strings.xml
已經有了一個字符串翻譯:加載默認值編程
default: <string name="help">Help</string>
values-de: <string name="help">Hilfe</string>
values-it: <string name="help">Aiuto</string>
比方說,我的設備是在意大利。我的字符串像
Aiuto
比方說,我已經得到了TextView
低於Button
其中「Aiuto」顯示。
當我按下按鈕,我需要的字符串重置爲它的默認值,所以在這種情況下,從
「Aiuto」到「幫助」
有什麼辦法,我可以以編程方式執行此操作?
你需要這個https://stackoverflow.com/questions/9475589/how-to-get-string-from-different-locales-in-android –