我在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
, 這個應該是問題所在。