Skip to content

Instantly share code, notes, and snippets.

@Andrej1A
Created September 11, 2019 14:07
Show Gist options
  • Save Andrej1A/336f917140409a027cf8356992ea2564 to your computer and use it in GitHub Desktop.
Save Andrej1A/336f917140409a027cf8356992ea2564 to your computer and use it in GitHub Desktop.
Android Kotlin Tint LottieAnimationView JSON
/**
* Tint LottieAnimationView
*/
private fun LottieAnimationView.tintColor(@ColorInt tintColor: Int) {
addValueCallback(
KeyPath("**"),
LottieProperty.COLOR_FILTER,
{ PorterDuffColorFilter(tintColor, PorterDuff.Mode.SRC_ATOP) }
)
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment