1 min readNov 9, 2018
Very cool. I’m trying to figure out how to do the same with Glide. Perhaps in a transformation. I know from this StackOverflow how to set the image to complete grayscale as a start.
val colorMatrix = ColorMatrix()
colorMatrix.setSaturation(0f)
val filter = ColorMatrixColorFilter(colorMatrix)
this.setColorFilter(filter)