我在下面的 xml 文件中定义了一个形状,现在我想以编程方式更改为纯色。
<?xml version="1.0" encoding="utf-8"?>
<shape xmlns:android="http://schemas.android.com/apk/res/android"
android:shape="rectangle" >
<solid android:color="#DFDFE0" />
<corners
android:bottomLeftRadius="8dp"
android:bottomRightRadius="8dp"
android:topLeftRadius="8dp"
android:topRightRadius="8dp" />
<stroke
android:width="3dp"
android:color="#2E3135" />
</shape>
我想我应该有一个扩展 ShapeDrawable 并实现 onDraw 方法的类。有谁知道怎么做?