android 11.0 状态栏通知栏的图标为白色解决方案

在11.0进行定制化开发中,客户反应app弹出的通知 在状态栏显示为白色,显示不了正常的背景色,这就跟通知的背景颜色有关
接下来首选看下通知显示的流程

framework/base/packages/SystemUI/src/com/android/systemui/statusbar/phone/StatusBarNotificationPresenter.java
private final NotificationPanelView mNotificationPanel;
@Override
public void updateNotificationViews() {
   
    
    
// The function updateRowStates depends on both of these being non-null, so check them here.
// We may be called before they are set from DeviceProvisionedController's callback.
if (mScrimController == null

猜你喜欢

转载自blog.csdn.net/baidu_41666295/article/details/124828250