<ImageView
android:id="@+id/imageView"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:backgroundTint="@color/colorRed"
android:background="@drawable/ic_delete"/>
As above I added an Android VectorAsset for ImageView background.
And I can change color of that Vector Asset from red to blue by xml like below.
android:backgroundTint="@color/colorBlue"
but I want to change its color programmatically.