Skip to content

Instantly share code, notes, and snippets.

@plnice
Created February 18, 2018 09:26
Show Gist options
  • Save plnice/b8e117e12ea0fc9913de00e790922bac to your computer and use it in GitHub Desktop.
Save plnice/b8e117e12ea0fc9913de00e790922bac to your computer and use it in GitHub Desktop.
private fun Drawable.tinted(@ColorInt tintColor: Int? = null, tintMode: PorterDuff.Mode = SRC_IN) =
apply {
setTintList(tintColor?.toColorStateList())
setTintMode(tintMode)
}
private fun Int.toColorStateList() = ColorStateList.valueOf(this)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment