How to get the default notification background color for custom notification in Lollipop?

前端 未结 5 1461

I\'m having an issue with the color of my custom notification background in Lollipop. It\'s black where it should be white. The textColor is OK:

I\'m using



        
5条回答
  •  野趣味
    野趣味 (楼主)
    2021-02-07 06:33

    To solve this, you have 2 options:

    1) Target SDK 21, and custom notification will automatically use a white background

    2) Copy your existing layout to layout-v21 folder and add android:background="#FFFFFFFF" to its root, like this:

    
    
    ...
    
    
    

    Works great for me.

提交回复
热议问题