Android清单无法识别styles.xml中列出的系统主题

时间:2012-10-03 14:56:48

标签: android xml styles themes manifest

在我的清单中,app主题指向styles.xml文件中列出的android样式:

<manifest 
xmlns:android="http://schemas.android.com/apk/res/android"
package="test.theme"
android:versionCode="1"
android:versionName="1.0" >

<uses-sdk
    android:minSdkVersion="16"
    android:targetSdkVersion="15" />

<application
    android:icon="@drawable/ic_launcher"
    android:label="@string/app_name"
    android:theme="@style/AppTheme" >
    <activity
        android:name=".MainActivity"
        android:label="@string/title_activity_main" >
        <intent-filter>
            <action android:name="android.intent.action.MAIN" />

            <category android:name="android.intent.category.LAUNCHER" />
        </intent-filter>
    </activity>
</application>

styles.xml:

<resources>
    <style name="AppTheme" parent="android:Theme.Black" />
</resources>

但由于某种原因,主题无法识别,而是加载了白色主题。然而,当我将主题直接放入清单时,它按预期运行:

<application
    android:icon="@drawable/ic_launcher"
    android:label="@string/app_name"
    android:theme="@android:style/Theme.Black" >

即使在空的默认项目中,也会出现同样的问题。 AppTheme的值列在R.java中,因此文件被识别为ok。有没有人有任何其他想法可能是什么问题?

1 个答案:

答案 0 :(得分:2)

我最终解决了这个问题,最后这个问题非常简单。

有一个特定于平台的值-v14 / styles.xml文件,我应该将我的样式放入其中,因为此表中的默认值优先于我对全局值/ styles.xml文件所做的更改

因此,如果有人遇到同样的问题,您可能需要检查是否正在保存目标平台的正确styles.xml文件。