我们可以定义一个环形可绘制对象,并在布局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>
最佳答案
首先将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);