如何动态分配戒指颜色

时间:2016-09-03 01:54:56

标签: android android-drawable shape ring

我们可以定义一个环形drawable并在布局xml文件中使用它,作为下面复制的样本,

是否可以定义环形绘图并在运行时动态更改颜色?用例在列表项中,它可能具有不同项目中环的不同环颜色。

搜索并找不到一个好的解决方案,如果有人有一些建议则表示赞赏。

<ImageView
                    android:layout_width="10dp"
                    android:layout_height="10dp"
                    android:src="@drawable/ring" />

<?xml version="1.0" encoding="utf-8"?>
<layer-list xmlns:android="http://schemas.android.com/apk/res/android">
<item
    android:top="4dp"
    android:right="4dp"
    android:bottom="4dp"
    android:left="4dp">
    <shape
        android:shape="oval">
        <solid android:color="#4d4d4d" />
    </shape>
</item>
<item>
    <shape
        android:shape="oval">
        <stroke android:width="2dp"
            android:color="#4d4d4d"/>
    </shape>
</item>

1 个答案:

答案 0 :(得分:1)

  

首先将ID添加到您的图层中,就像那样

<?xml version="1.0" encoding="utf-8"?>
<layer-list xmlns:android="http://schemas.android.com/apk/res/android">
    <item
        android:id="@+id/shape1"
        android:top="4dp"
        android:right="4dp"
        android:bottom="4dp"
        android:left="4dp">
        <shape
            android:shape="oval">
            <solid android:color="#4d4d4d" />
        </shape>
    </item>
    <item
        android:id="@+id/shape2"

        >
        <shape

            android:shape="oval">
            <stroke android:width="2dp"
                android:color="#4d4d4d"/>
        </shape>
    </item>
    </layer-list>
  

<强>代码...

LayerDrawable shape = (LayerDrawable) ContextCompat.getDrawable(demo.this,R.drawable.ring);
GradientDrawable gradientDrawable1 = (GradientDrawable) shape.findDrawableByLayerId(R.id.shape1);

GradientDrawable gradientDrawable2 = (GradientDrawable) shape.findDrawableByLayerId(R.id.shape2);

gradientDrawable1.setColor(ContextCompat.getColor(demo.this,R.color.color_first));

gradientDrawable2.setColor(ContextCompat.getColor(demo.this,R.color.color_second));// changing to black color

ImageView imageView=(ImageView)findViewById(R.id.imageview);
imageView.setBackground(shape);

enter image description here