如何动态更改可绘制对象 <shape> 的颜色? (Android)

How do I dynamically change the color of a drawable <shape>? (Android)

每个按钮代表可点击的东西,它有一种颜色存储在数据库中,用户可以配置。按钮的背景是后面的<shape>.

<?xml version="1.0" encoding="utf-8"?>
<shape xmlns:android="http://schemas.android.com/apk/res/android"
       android:shape="rectangle">
  <stroke android:width="1dp" android:color="#000" />
  <corners android:radius="5dp" />
  <gradient android:startColor="#FFF"
            android:centerColor="#FFF"
            android:endColor="#666"
            android:angle="315" />
  <padding android:bottom="2dp"
           android:left="2dp"
           android:right="2dp"
           android:top="2dp" />
</shape>

我想了解 <gradient> 元素 — 特别是 startColor centerColorendColor 属性。我可以这样做:

button.getBackground().setTint(theColor);

但这似乎抹去了笔触和渐变。

这可能吗?有没有更好的方法?

试试下面的代码片段,试一试

GradientDrawable gd = new GradientDrawable(GradientDrawable.Orientation.TOP_BOTTOM, new int[]{ContextCompat.getColor(this,R.color.white), ContextCompat.getColor(this,R.color.red_500), ContextCompat.getColor(this,R.color.blue_500)});
    gd.setShape(GradientDrawable.RECTANGLE);
    gd.setStroke(1, ContextCompat.getColor(this, R.color.black));
    gd.setCornerRadius(5f);
    gd.setBounds(2, 2, 2, 2);
    findViewById(R.id.btn_analytics).setBackground(gd);

请检查这个

GradientDrawable bgShape = (GradientDrawable)button.getBackground();
bgShape.setColor(Color.BLACK);

正如之前的答案所指出的,它是一个 GradientDrawable 结果证明它有一个奇特的 setColors method, allowing direct access to those three xml attributes in order. But it must be preceded by a call to mutate 像这样:

GradientDrawable gd = ((GradientDrawable) button.getBackground());
gd.mutate();
gd.setColors(new int[]{dynamicColor,
   ContextCompat.getColor(context, R.color.button),
   ContextCompat.getColor(context, R.color.button_shade)});

@Bhavnik 让我做到了一半,谢谢。