问题描述
- 在manifest中添加一个主题时出错
-
我在manifest文件中添加一个主题时,得到一个错误说找不到资源。
我用的是下面的代码,如何修改这个问题呢?<?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>
解决方案
把@string/Texttheme
改成 @style/Texttheme
, 这个应该是问题所在。
解决方案二:
使用一个 style 文件,参考文档 Applying Styles and Themes
时间: 2024-10-03 19:46:06