Eclipse 中的 Android 开发:奇怪的错误消息
我创建了一个测试项目并添加了两个 XML 文件。当我保存项目时,我收到一条没有任何意义的错误消息。
[2011-11-10 10:21:04 - 测试] res\layout\MainList.xml:无效文件 名称:必须仅包含 [a-z0-9_.]
[2011-11-10 10:21:04 - 测试] res\layout\MainList.xml:文件名无效:必须仅包含 [a-z0-9_.]
[2011-11-10 10:21:04 - 测试] res\layout\PlaylistEditor.xml:文件名无效:必须仅包含 [a-z0-9_.]
[2011-11-10 10:21:04 - 测试] res\layout\PlaylistEditor.xml:文件名无效:必须仅包含 [a-z0-9_.]
文件名不包含任何无效字符。 Eclipse 确实保存了项目(包括这些文件),那么为什么它会抛出此错误消息呢?
I created a test project and added two XML files. When I save the project, I get an error message that doesn't make any sense.
[2011-11-10 10:21:04 - Testing] res\layout\MainList.xml: Invalid file
name: must contain only [a-z0-9_.][2011-11-10 10:21:04 - Testing]
res\layout\MainList.xml: Invalid file name: must contain only
[a-z0-9_.][2011-11-10 10:21:04 - Testing]
res\layout\PlaylistEditor.xml: Invalid file name: must contain only
[a-z0-9_.][2011-11-10 10:21:04 - Testing]
res\layout\PlaylistEditor.xml: Invalid file name: must contain only
[a-z0-9_.]
The filenames do not have any invalid characters. Eclipse DOES save the project (including these files) so why does it throw this error message?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
XML 文件的名称中不能包含大写字符。将
MainList.xml
重命名为mainlist.xml
等。这是 Android 要求,而不是 Eclipse 要求。Your XML files can't contain upper-case characters in their names. Rename
MainList.xml
tomainlist.xml
, etc. This is an Android requirement, not an Eclipse one.