Reputation: 381
In drawble are icon default(black). I want to change color for these icon.
Upvotes: 1
Views: 2461
Reputation: 9703
Could you not do something like this:
ImageView forecastImage = View.FindViewById<ImageView>(Resource.Id.ForecastImage);
var color = Color.ParseColor("#AE6118"); //The color u want
forecastImage.SetColorFilter(color);
Upvotes: 4