Eclipse 中的 Android 开发:奇怪的错误消息

发布于 2024-12-15 13:43:28 字数 519 浏览 0 评论 0原文

我创建了一个测试项目并添加了两个 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

够钟 2024-12-22 13:43:28

XML 文件的名称中不能包含大写字符。将 MainList.xml 重命名为 mainlist.xml 等。这是 Android 要求,而不是 Eclipse 要求。

Your XML files can't contain upper-case characters in their names. Rename MainList.xml to mainlist.xml, etc. This is an Android requirement, not an Eclipse one.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文