Skip to content

Instantly share code, notes, and snippets.

@rmakiyama
Created November 29, 2017 08:42
Show Gist options
  • Select an option

  • Save rmakiyama/9d3ed2a7f49c67675149be35c6b0d6e7 to your computer and use it in GitHub Desktop.

Select an option

Save rmakiyama/9d3ed2a7f49c67675149be35c6b0d6e7 to your computer and use it in GitHub Desktop.
@BindingAdapter("setDrawableTint")
fun ImageView.setDrawableTint(color: Int) {
if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.LOLLIPOP) {
this.imageTintList = ColorStateList.valueOf(color)
} else {
this.setColorFilter(color, PorterDuff.Mode.SRC_ATOP)
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment