添加主题时出错

发布于 2024-12-04 00:40:09 字数 613 浏览 2 评论 0原文

当我尝试在清单中添加主题时出现错误,提示找不到资源。我该如何解决这个问题?

<?xml version="1.0" encoding="utf-8"?>
<resources>
    <style name="Texttheme" >
        <item name="android:textColor">#ff0000</item>
    </style>
</resources>

<activity android:name=".Funfriends" 
          android:theme="@string/Texttheme"
          android:label="@string/app_name">
    <intent-filter>
        <action android:name="nik.trivia.FUNFRIENDS" />
        <category android:name="android.intent.category.DEFAULT" />
    </intent-filter>
</activity>

I am getting an error when I try adding a theme in the manifest, telling the resource is not found. How do I fix this problem?

<?xml version="1.0" encoding="utf-8"?>
<resources>
    <style name="Texttheme" >
        <item name="android:textColor">#ff0000</item>
    </style>
</resources>

<activity android:name=".Funfriends" 
          android:theme="@string/Texttheme"
          android:label="@string/app_name">
    <intent-filter>
        <action android:name="nik.trivia.FUNFRIENDS" />
        <category android:name="android.intent.category.DEFAULT" />
    </intent-filter>
</activity>

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(2

左岸枫 2024-12-11 00:40:09

@string/Texttheme改为@style/Texttheme,应该是这样的。

Change @string/Texttheme to @style/Texttheme, this should be the case.

陪你搞怪i 2024-12-11 00:40:09

为此使用样式文件。请参阅应用样式和主题中的文档 >。

Use a style file for this. Refer to the documentation in Applying Styles and Themes.

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