Android XML字符串'et cetera'编码?

时间:2013-04-25 06:01:06

标签: android android-xml

这给了我一个错误:

<string name="txt_urbeautiful">What...</string>
Replace "..." with ellipsis character (…, &&;#8230;)

那么如何在XML中编码'et cetera ...'?

2 个答案:

答案 0 :(得分:6)

如错误所示,您必须将...替换为&#8230;

<string name="txt_urbeautiful">What&#8230;</string>

答案 1 :(得分:0)

"&#xb7;"

这将代表xml中的。(点),

XML不使用\ ue ***表示法。可以使用以&amp;#开头的字符引用,但通常不需要它们。 XML通常与UTF-8字符编码一起使用,因此每个字符都可以这样写。