我在drawable文件夹中有一个XML文件。
<?xml version="1.0" encoding="utf-8"?>
<shape xmlns:android="http://schemas.android.com/apk/res/android"
android:shape="rectangle"
android:padding="10dp">
<solid android:color="#2A3B5E"/>
<corners
android:bottomRightRadius="15dp"
android:bottomLeftRadius="15dp"
android:topLeftRadius="15dp"
android:topRightRadius="15dp"/>
</shape>
我想更改颜色值。是否可以通过编程方式更改值?
答案 0 :(得分:1)
已经回答here!
它检索包含您要修改的可绘制形状的背景;否则你可以以编程方式实例化一个新的ShapeDrawable
,分配你喜欢的所有属性。
答案 1 :(得分:0)
你可以通过LevelListDrawable来做到这一点。 查看android docs