无法在android drawable xml中添加属性主色

时间:2017-01-06 04:55:11

标签: java android android-drawable android-styles

我的主题定义为

<style name="AppThemeRed" parent="Theme.AppCompat.Light.NoActionBar">
        <!-- Customize your theme here. -->
        <item name="colorPrimary">@color/colorPrimaryRed</item>
        <item name="colorPrimaryDark">@color/colorPrimaryDarkRed</item>
        <item name="colorAccent">@color/colorAccentRed</item>
    </style>

在我的XML布局中,我正在做

<android.support.design.widget.AppBarLayout
        android:background="?attr/colorPrimary"
        android:id="@+id/topBar"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:theme="@style/AppTheme.AppBarOverlay">

每当我更改任何主题时,colorPrimary都会更改

但是,如果我在drawable中添加了同样的东西,例如

<selector xmlns:android="http://schemas.android.com/apk/res/android">
    <item android:state_pressed="true">
        <shape android:shape="rectangle">
            <solid android:color="?attr/colorPrimary" />
            <corners android:radius="5dp"/>
        </shape>
    </item>
    <item>
        <shape android:shape="rectangle">
            <solid android:color="?attr/colorPrimary" />
            <corners android:radius="5dp"/>
        </shape>
    </item>
</selector>

因无法扩充视图而导致崩溃,视图背景设置为@drawabe/xxxx

如何在XML drawable

中定义主题颜色属性

4 个答案:

答案 0 :(得分:3)

只需替换......

android:color="?attr/colorPrimary"

为...

android:color="@color/colorPrimaryRed"

<强>更新

无法在API 21下面的xml drawable中引用属性。 为了制作您的主题,您需要:

为每个主题创建一个xml drawable。 使用@color标签或#RGB格式直接包含所需的颜色。

在attrs.xml中为drawable创建一个属性。

<?xml version="1.0" encoding="utf-8"?>
<resources>
    <!-- Attributes must be lowercase as we want to use them for drawables -->
    <attr name="my_drawable" format="reference" />
</resources>

将您的drawable添加到theme.xml。

<style name="MyTheme" parent="@android:style/Theme.NoTitleBar">
   <item name="my_drawable">@drawable/my_drawable</item>
</style>

使用您的属性在布局中引用您的drawable。

<TextView android:background="?my_drawable" />

答案 1 :(得分:0)

这似乎得到了API 21+的支持。在下面你不能引用drawable中的属性。 https://code.google.com/p/android/issues/detail?id=26251

这可能有助于解决方法: How to reference style attributes from a drawable?

答案 2 :(得分:0)

你可以试试吗

<solid android:color="@android:attr/colorPrimary"/>

而不是

<solid android:color="?attr/colorPrimary" />

答案 3 :(得分:0)

您可以使用: -

<solid android:color="@android:color/holo_orange_dark"  />