我喜歡食用以下如何設置從JSON消耗變量的strings.xml
[
{
"Id": "BT00",
"Text": "Register"
},
{
"Id": "BT01",
"Text": "Login"
},
{
"Id": "BT02",
"Text": "Next"
},
{
"Id": "BT03",
"Text": "Yes"
}
]
一個JSON,我希望把每一個物體內部string.xml如下
<string name="BT00">Register</string>
<string name="BT01">Login</string>
<string name="BT02">Next</string>
<string name="BT03">Yes</string>
嘗試使用以下文檔https://developer.android.com/guide/topics/resources/string-resource.html#StringArray來做到這一點,但不符合我想要完成的任務
任何人都有一個想法如何做到這一點?
更新:所提出的答案的差異,我的情況是面向Android和具體修改該文件夾的情況下,「資源」
不幸的是'strings.xml'文件在運行時不能修改,[如此處所示](https://stackoverflow.com/a/9679336/8155603) – Tony