How to change colors of a Drawable in Android?

前端 未结 21 2179
野性不改
野性不改 2020-11-22 13:50

I\'m working on an android application, and I have a drawable that I\'m loading up from a source image. On this image, I\'d like to convert all of the white pixels to a dif

21条回答
  •  天命终不由人
    2020-11-22 14:23

    It's very very simple when you use a library to do that for you. Try this library

    You can call like this:

    Icon.on(holderView).color(R.color.your_color).icon(R.mipmap.your_icon).put();
    

提交回复
热议问题