自定义颜色不显示android.Theme.Material

时间:2016-06-20 18:45:55

标签: android android-layout material-design

在我的values-v21文件夹中,我有以下style.xml,我自定义Theme.Material:

<resources>
    <style name="AppTheme" parent="android:Theme.Material">
        <item name="colorPrimary">#880E4F</item>
        <item name="colorPrimaryDark">#E91E63</item>
        <item name="colorAccent">#FCE4EC</item>
    </style>
</resources>

然而,当我在Android API 23上运行我的应用程序时,我看不到任何这些颜色。我在我的android清单中调用主题:android:theme="@style/AppTheme"。我已尝试使用我的标准值文件夹(=&gt; API 21或更小,我有同样的问题)。

1 个答案:

答案 0 :(得分:1)

在文件夹值-v23中添加

<resources>
<style name="AppTheme" parent="android:Theme.Material">
    <item name="android:colorPrimary">#880E4F</item>
    <item name="android:colorPrimaryDark">#E91E63</item>
    <item name="android:colorAccent">#FCE4EC</item>
</style>
</resources>

我希望有效!!