Standard Android Button with a different color

后端 未结 20 3260
误落风尘
误落风尘 2020-11-21 23:43

I\'d like to change the color of a standard Android button slightly in order to better match a client\'s branding.

The best way I\'ve found to do this so far is to c

20条回答
  •  被撕碎了的回忆
    2020-11-22 00:20

    Use it in this way:

    buttonOBJ.getBackground().setColorFilter(Color.parseColor("#YOUR_HEX_COLOR_CODE"), PorterDuff.Mode.MULTIPLY);
    

提交回复
热议问题