添加主题时出错
当我尝试在清单中添加主题时出现错误,提示找不到资源。我该如何解决这个问题?
<?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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
将
@string/Texttheme
改为@style/Texttheme
,应该是这样的。Change
@string/Texttheme
to@style/Texttheme
, this should be the case.为此使用样式文件。请参阅应用样式和主题中的文档 >。
Use a style file for this. Refer to the documentation in Applying Styles and Themes.