我需要将应用程序栏上的颜色更改为某些渐变颜色。我在可绘制文件夹中创建了action_bar_bg.xml文件:

<?xml version="1.0" encoding="utf-8"?>
<shape xmlns:android="http://schemas.android.com/apk/res/android">
    <gradient
        android:angle="90"
        android:centerColor="@color/colorPrimaryDark"
        android:endColor="@color/colorPrimary"
        android:startColor="@color/colorPrimary" />
</shape>

我试图在styles.xml中更改colorPrimary:
<!-- Base application theme. -->
<style name="AppTheme" parent="Theme.AppCompat.Light.DarkActionBar">
    <!-- Customize your theme here. -->

    <item name="colorPrimary">@drawable/action_bar_bg</item>

</style>

但这不起作用。我收到错误消息:android.content.res.Resources$NotFoundException: File res/drawable/action_bar_bg.xml from color state list resource ID #0x7f020046)我想要达到这个结果:

我必须更改什么代码?

最佳答案

尝试这种方式。
您可以在主题中定义一个名为colorPrimary的新属性。这将为您提供ActionBar或Toolbar纯色。

下面举个例子:

<style name="AppTheme" parent="Theme.AppCompat.Light">
    <!-- colorPrimary is used for the default action bar background -->
    <item name="colorPrimary">@color/my_action_bar_color</item>
</style>

请注意:除values-v21以外,每个值文件夹中的颜色必须仅为colorPrimary,而不是android:colorPrimary。

您可以在Android上阅读有关自定义调色板的更多信息。

07-24 09:48