Android SDK资源转换编译问题

Android SDK资源转换编译问题,第1张

概述我正在开发一个Android应用,但布局资源出现问题,失败了.我是Java,Android和Eclipse的新手.每次保存XML时,Eclipse都会简单地输出以下内容:…“无效的文件名:必须仅包含[a-z0-9_.].”我已经检查了没有.out文件.我已经检查过XML,它似乎是有效的.文件名是numberSelectorDialog.xml.我

我正在开发一个Android应用,但布局资源出现问题,失败了.

我是Java,AndroID和Eclipse的新手.每次保存XML时,Eclipse都会简单地输出以下内容:

…“无效的文件名:必须仅包含[a-z0-9_.].”

我已经检查了没有.out文件.我已经检查过XML,它似乎是有效的.文件名是numberSelectorDialog.xml.我检查了路径是否接近Win32限制.

我的布局资源xml如下所示:

<?xml version="1.0" enCoding="utf-8"?><linearLayout androID:ID="@+ID/linearLayout01"    androID:layout_height="fill_parent" xmlns:androID="http://schemas.androID.com/apk/res/androID"    androID:orIEntation="vertical" androID:padding="12px"     androID:layout_wIDth="175px" androID:layout_gravity="center_vertical|center_horizontal|center"    androID:focusable="true" androID:focusableIntouchMode="true"    androID:gravity="center_vertical|center_horizontal|center">    <linearLayout androID:ID="@+ID/linearLayout02"        androID:layout_wIDth="wrap_content" androID:layout_height="wrap_content">        <button androID:ID="@+ID/button01" androID:text="1"            androID:layout_wIDth="50px" androID:layout_height="50px"></button>        <button androID:ID="@+ID/button02" androID:text="2"            androID:layout_height="50px" androID:layout_wIDth="50px"></button>        <button androID:ID="@+ID/button03" androID:text="3"            androID:layout_height="50px" androID:layout_wIDth="50px"></button>    </linearLayout>    <linearLayout androID:ID="@+ID/linearLayout03"        androID:layout_wIDth="wrap_content" androID:layout_height="wrap_content">        <button androID:text="4" androID:layout_height="50px"            androID:layout_wIDth="50px" androID:ID="@+ID/button04"></button>        <button androID:text="5" androID:layout_height="50px"            androID:layout_wIDth="50px" androID:ID="@+ID/button05"></button>        <button androID:text="6" androID:layout_height="50px"            androID:layout_wIDth="50px" androID:ID="@+ID/button06"></button>    </linearLayout>    <linearLayout androID:ID="@+ID/linearLayout04"        androID:layout_wIDth="wrap_content" androID:layout_height="wrap_content">        <button androID:text="7" androID:layout_height="50px"            androID:layout_wIDth="50px" androID:ID="@+ID/button07"></button>        <button androID:text="8" androID:layout_height="50px"            androID:layout_wIDth="50px" androID:ID="@+ID/button08"></button>        <button androID:text="9" androID:layout_height="50px"            androID:layout_wIDth="50px" androID:ID="@+ID/button09"></button>    </linearLayout><button androID:layout_height="wrap_content" androID:text="Clear" androID:layout_wIDth="fill_parent" androID:ID="@+ID/buttonClear"></button></linearLayout>

还有其他建议吗?

谢谢,

菲利浦

解决方法:

我发现了问题…秘密在错误消息中;-)

文件名必须完全小写,不能像我一样驼峰化.

菲利浦

总结

以上是内存溢出为你收集整理的Android SDK资源转换/编译问题全部内容,希望文章能够帮你解决Android SDK资源转换/编译问题所遇到的程序开发问题。

如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。

欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/web/1092361.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-05-27
下一篇 2022-05-27

发表评论

登录后才能评论

评论列表(0条)

保存