Skip to content

Instantly share code, notes, and snippets.

@dimrsilva
Last active May 14, 2016 16:21
Show Gist options
  • Save dimrsilva/e24e737460756880c7b56f7bfdcea44e to your computer and use it in GitHub Desktop.
Save dimrsilva/e24e737460756880c7b56f7bfdcea44e 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));
drawable.mutate();
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