hello i have the following drawable:
<?xml version="1.0" encoding="utf-8"?>
<shape xmlns:android="http://schemas.android.com/apk/res/android"
android:shape="rectangle">
<solid android:color="#66333333" />
<padding
android:left="0dp"
android:bottom="0dp"
android:right="0dp"
android:top="0dp"/>
<corners android:radius="16dp" />
</shape>
i would like to use it as a background for a view, but set the color of the stroke programatically. is that possible?