I want to edit the fill Color of a vector-file in Android programmatically.
In the xml-file I can set my color with the attribute android:fillColor
button.setColorFilter(getResources().getColor(R.color.YOUR_COLOR));
example:
dislikeBtn.setColorFilter(getResources().getColor(R.color.grey));