Skip to content

Instantly share code, notes, and snippets.

@dimrsilva
Last active May 14, 2016 16:23
Show Gist options
  • Save dimrsilva/0a971bba1840ede4be83f206740a1f64 to your computer and use it in GitHub Desktop.
Save dimrsilva/0a971bba1840ede4be83f206740a1f64 to your computer and use it in GitHub Desktop.
ImageView imageView = new ImageView(this);
Drawable drawable = DrawableCompat.wrap(ContextCompat.getDrawable(this, R.drawable.ic_account_circle));
DrawableCompat.setTint(drawable, ContextCompat.getColor(this, R.color.red));
imageView.setImageDrawable(drawable);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment