How to set color for imageview in Android

前端 未结 7 1621
囚心锁ツ
囚心锁ツ 2021-01-30 19:47

I want set icon into ImageView and i downloaded icons from this site : FlatIcon
Now i want set color to this icons but when use setBackground just

7条回答
  •  生来不讨喜
    2021-01-30 20:32

    Latest Lint shows a warning using android:tint, recommending to use app:tint, but the tint is not visible until you use it together with app:tintMode. So it looks like this:

    app:tint="@color/yourcolor"
    app:tintMode="add"
    

提交回复
热议问题