当我尝试在清单中添加主题时,我收到错误,告诉找不到资源。我该如何解决这个问题?
<?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>
答案 0 :(得分:0)
将@string/Texttheme
更改为@style/Texttheme
,情况属实。
答案 1 :(得分:0)
使用样式文件。请参阅 Applying Styles and Themes 中的文档。