其他分享
首页 > 其他分享> > Eclipse中的Android Dev:奇怪的错误消息

Eclipse中的Android Dev:奇怪的错误消息

作者:互联网

我创建了一个测试项目并添加了两个XML文件.当我保存项目时,我收到一条没有任何意义的错误消息.

[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_.]

文件名没有任何无效字符. Eclipse DOES保存项目(包括这些文件),为什么会抛出此错误消息?

解决方法:

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

标签:android,eclipse,adk
来源: https://codeday.me/bug/20190613/1235285.html