我希望能夠從我們的CMS(或某個數據庫)的res/values/strings.xml中加載用戶可見字符串的值, gradle build。 E.g. <string name="button_label">OK, do it</string>
可改爲 <string name="button_label">OK, do it now!</string>
...或什麼的。 這個想法是,新的
請解釋我如何在xml中添加新行(當我在程序中使用此字符串時,它必須是單行)? 例如: <string name="test">This
is
test
line</string>
但在程序時,我會用getString(R.string.test);它會加載一個字符串沒有一些新的行字符:This is test line。 我只需要這個文件格式。