在某处我读到了如何在 XML 文档中使用变量。他们说这很简单,我猜是这样。我在 Android strings.xml 文件中成功地使用了它。我一整天都在使用它,直到突然 android 停止解析它并停止将其视为变量。
我以这种方式使用它:
<resources>
<string name="some_string">string1</string>
<string name="another_string"> {$some_string} trolololo </string>
</resources>
并在java中通过以下方式访问它: getApplicationContext().getString(R.strings.another_string);
getApplicationContext().getString(R.strings.another_string);
在输出中,我曾经接收过如下字符串:
string1 trolololo
现在我只收到:
{$some_string} trolololo
有谁知道出了什么问题?我知道 Android 的 XML 可能与标准 XML 不同,但它曾经可以工作。Awww ...感谢您的任何建议。