Android可绘制图层集颜色失败

时间:2017-01-02 12:07:46

标签: android xml android-layout android-drawable xml-drawable

我试图以编程方式更改drawable中图层的颜色,因此实际可绘制的xml文件不会更改,而只是当前drawable在我的ImageView中用作src。

我正在使用的对象是3个圆圈(3个椭圆形)彼此嵌套(见card_template.xml)。

我有以下代码:

    LayerDrawable cardLayers = (LayerDrawable) keyCard.getDrawable();
    System.out.println("Number of layers (should be 3): "+ cardLayers.getNumberOfLayers());
    GradientDrawable layer1 = (GradientDrawable) (cardLayers.findDrawableByLayerId(R.id.card_layer1));
    layer1.setColor(0);

我知道我得到了正确的drawable,因为System.out.println值,但是当我在layer1.setColor(0);中设置图层的颜色时,图层就会消失 - 外圈没有显示在keyCard ImageView中。

layer1.setColorFilter(0, PorterDuff.Mode.___)无法在任何模式下工作,图层保持不变或消失..

为什么会这样?我无法在文档中找到我的解决方案,也不会在此处或其他地方找到任何问题。

请帮助:)

以下是card_template.xml

<?xml version="1.0" encoding="utf-8"?>

<layer-list xmlns:android="http://schemas.android.com/apk/res/android">
<item android:id="@+id/card_layer1">
    <shape android:shape="oval">
        <solid android:color="@android:color/black"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"/>
        <size
            android:width="5dp"
            android:height="5dp"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content" />
    </shape>
</item>
<item android:id="@+id/card_layer2" android:top="2dp" android:left="2dp" android:right="2dp" android:bottom="2dp">
    <shape android:shape="oval">
        <solid android:color="#ff0000"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"/>
        <size
            android:width="5dp"
            android:height="5dp"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content" />
    </shape>
</item>

<item android:id="@+id/card_layer3" android:top="4dp" android:left="4dp" android:right="4dp" android:bottom="4dp">
    <shape android:shape="oval">
        <solid android:color="#ffffff"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"/>
        <size
            android:width="5dp"
            android:height="5dp"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content" />
    </shape>
</item>

1 个答案:

答案 0 :(得分:0)

根据GradientDrawable文档,setColor采用ColorStateList。

请仔细阅读ColorStateList了解详情。尝试给出一个合适的colorstate对象而不是0。