我在strings.xml文件中写了以下内容:
<string name="game_settings_dragNDropMove_checkBox">Move by Drag&Drop</string>
我得到了以下错误:
The reference to entity "Drop" must end with the ';' delimiter.
我怎么能写字符&在字符串。xml?
我在strings.xml文件中写了以下内容:
<string name="game_settings_dragNDropMove_checkBox">Move by Drag&Drop</string>
我得到了以下错误:
The reference to entity "Drop" must end with the ';' delimiter.
我怎么能写字符&在字符串。xml?
当前回答
&在字符串中:
<string name="string_abc">Translate & Scan Objects</string>
输出将是:
翻译和扫描对象
其他回答
我发现的最简单的方法是将“&”替换为对应的Unicode。对于上面给出的例子,写如下:
<string name="game_settings_dragNDropMove_checkBox">Move by Drag\u0026Drop</string>
为了避免错误,使用提取字符串:
<string name="travels_tours_pvt_ltd"><![CDATA[Travels & Tours (Pvt) Ltd.]]></string>
你可以这样写
<string name="you_me">You & Me<string>
输出:你和我
这是我的一个问题,我的解决方法如下:使用>对于>,<对于<,&For &,"'" For ', " For \"\"
编码:
&