Android 10.0 SystemUI 下拉通知栏每条通知去掉灰色的背景

在对SystemUI的定制中,当对通知栏每条通知背景实现圆角背景时,会发现有灰色的背景很不美观,所以就要想办法去掉这个灰色背景
如下图这样的灰色背景
在这里插入图片描述

现在先看通知的布局从布局文件着手看问题

status_bar_notification_row.xml

<com.android.systemui.statusbar.notification.row.ExpandableNotificationRow
    xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
   

猜你喜欢

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