结束语句并清理项目仍然得到同样的错误,这里我放置代码
<resources>
<string name="app_name">LiveWallpaper1</string>
<string name="hello_world">Hello world!</string>
<string name="menu_settings">Settings</string>
<string name="title_activity_main">MainActivity</string>
<string name="wallpaper_description">wallpaper descriptioning></string>
</resources>
答案 0 :(得分:1)
我认为错误就在这里
壁纸描述&gt;
&#39;&gt;&#39;最后是不允许的,因为它是一个特殊的角色。尝试用\ u003E替换它,这是unicode定义。其他unicode定义请参考此处
http://jrgraphix.net/research/unicode_blocks.php?block=0
希望这有效
答案 1 :(得分:1)
在最后一个字符串行中删除'&gt;'
之前的角色</string>
标签。这导致了你的错误。