How to add button tint programmatically

前端 未结 15 913
时光取名叫无心
时光取名叫无心 2020-11-30 23:38

In the new AppCompat library, we can tint the button this way:

15条回答
  •  一整个雨季
    2020-12-01 00:25

    For ImageButton you can use:

    favoriteImageButton.setColorFilter(Color.argb(255, 255, 255, 255)); // White Tint
    

提交回复
热议问题