Created
November 29, 2017 08:42
-
-
Save rmakiyama/9d3ed2a7f49c67675149be35c6b0d6e7 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| @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