我在strings.xml
文件中存储了几个 url。我想在不编码的情况下存储它们(作为原始文本),但是会为andstrings.xml
引发错误。=
&
例如:
http://www.example.org/index.php?p=616687&ac=some_q
如果我按原样存储链接,它将引发错误:
The reference to entity "ac" must end with the ';' delimiter.
但是,如果我替换&
为%26
:
http://www.example.org/index.php?p=616687%26ac=some_q
虽然这可以正常工作,但不会在浏览器中打开正确的页面。
有什么方法可以在strings.xml
不格式化或 uri 编码的情况下存储链接吗?