@drawable 这个词拼写不正确
我有一个 styles.xml 文件,其中包含以下内容:
<style name="Theme.MyApp" parent="android:style/Theme.Holo">
<item name="android:actionBarStyle">@style/ActionBar</item>
</style>
<style name="ActionBar" parent="android:style/Widget.Holo.ActionBar">
<item name="android:background">@drawable/actionbar_b</item>
</style>
我收到错误 @drawable 拼写不正确'。
actionbar_b' 文件就位。
I have a styles.xml file with the following in it:
<style name="Theme.MyApp" parent="android:style/Theme.Holo">
<item name="android:actionBarStyle">@style/ActionBar</item>
</style>
<style name="ActionBar" parent="android:style/Widget.Holo.ActionBar">
<item name="android:background">@drawable/actionbar_b</item>
</style>
I get the error The @drawable is not correctly spelled'.
actionbar_b' file is on its place.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(4)
在 Eclipse 中,转到 Window/preferences/Editors/text editors/spelling 并从“启用检查拼写”中删除检查
in Eclipse go to Window/preferences/Editors/text editors/spelling and remove check from "Enable check spelling"
样式文件“styles.xml”必须以: 开头
并以:
结尾 示例:
The style file "styles.xml" must be start with:
and finish with:
Example:
当我忘记写入创建的文件的 .xml 扩展名时,出现此错误。
I had this error when I forgot to write the .xml extension of the created file.
您可以忽略该错误。无论如何它都会建立。
You can ignore the error. It will build anyway.