程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> 更多編程語言 >> 編程綜合問答 >> theme-在manifest中添加一個主題時出錯

theme-在manifest中添加一個主題時出錯

編輯:編程綜合問答
在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, 這個應該是問題所在。

  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved