Standard Android Button with a different color

后端 未结 20 3261
误落风尘
误落风尘 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:14

    Mike, you might be interested in color filters.

    An example:

    button.getBackground().setColorFilter(new LightingColorFilter(0xFFFFFFFF, 0xFFAA0000));
    

    try this to achieve the color you want.

提交回复
热议问题