@drawable 这个词拼写不正确

发布于 2024-11-28 15:43:41 字数 451 浏览 1 评论 0原文

我有一个 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 技术交流群。

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

发布评论

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

评论(4

柠北森屋 2024-12-05 15:43:41

在 Eclipse 中,转到 Window/preferences/Editors/text editors/spelling 并从“启用检查拼写”中删除检查

in Eclipse go to Window/preferences/Editors/text editors/spelling and remove check from "Enable check spelling"

梦旅人picnic 2024-12-05 15:43:41

样式文件“styles.xml”必须以: 开头

<?xml version="1.0" encoding="utf-8"?>
<resources>

并以:

</resources>

结尾 示例:

<?xml version="1.0" encoding="utf-8"?>
<resources>  
    <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>
</resources>

The style file "styles.xml" must be start with:

<?xml version="1.0" encoding="utf-8"?>
<resources>

and finish with:

</resources>

Example:

<?xml version="1.0" encoding="utf-8"?>
<resources>  
    <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>
</resources>
愚人国度 2024-12-05 15:43:41

当我忘记写入创建的文件的 .xml 扩展名时,出现此错误。

I had this error when I forgot to write the .xml extension of the created file.

无尽的现实 2024-12-05 15:43:41

您可以忽略该错误。无论如何它都会建立。

You can ignore the error. It will build anyway.

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