我在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="game_settings_dragNDropMove_checkBox">Move by Drag&Drop</string>
其他回答
Mac和Android工作室用户:
在string.xml或布局中键入你的字符,如&,并选择“选项”和“返回”键。 请参考截图
我发现的最简单的方法是将“&”替换为对应的Unicode。对于上面给出的例子,写如下:
<string name="game_settings_dragNDropMove_checkBox">Move by Drag\u0026Drop</string>
编码:
&
这是我的一个问题,我的解决方法如下:使用>对于>,<对于<,&For &,"'" For ', " For \"\"
即使你的问题已经回答了,我仍然想告诉更多这样的实体。 这些都是html实体,所以在android中你可以这样写:
如下所示:
& with &
> with >
< with <
" with ", “ or ”
' with ', ‘ or ’
} with }