在我的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或更小,我有同样的问题)。
答案 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>
我希望有效!!