Android 11.0 SystemUI修改下拉通知栏每条通知为圆角背景

11.0定制化开发SystemUI,下拉通知栏每条通知的背景修改为圆角背景,而下拉通知的布局文件为status_bar_notification_row.xml

1.对布局文件添加圆角背景为:
qs_background_primary.xml

<inset xmlns:android="http://schemas.android.com/apk/res/android">
    <shape>
        <solid android:color="#ffffff"/>
        <corners android:radius="20dp" />
    </shape>

猜你喜欢

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