I'm experimenting with Drawable backgrounds and have had no problems so far.
I'm now trying to change the gradient background color at runtime.
Unfortunately, there's no API to change it at runtime, it seems. Not even by trying to mutate() the drawable, as explained here: Drawable mutations
The sample XML looks like this. It works, as expected.
<shape xmlns:android="http://schemas.android.com/apk/res/android"
android:shape="rectangle">
<gradient
android:startColor="#330000FF"
android:endColor="#110000FF"
android:angle="90"/>
</shape>
Sadly, I want a list with various colors, and they'd have to be programatically altered at runtime.
Is there another way to create this gradient background at runtime? Perhaps even not using XML altogether?