Android 10.0 原生SystemUI下拉通知栏UI背景设置为圆角背景的定制(一)

1.前言


 在10.0的系统rom定制化开发中,在原生系统SystemUI下拉状态栏的通知栏的背景是白色四角的背景,由于在产品设计中,需要把四角背景默认改成圆角背景,所以就需要分析系统原生下拉通知栏的每条通知的默认背景,然后读懂流程,设置默认下拉状态栏UI中的通知栏部分每一条通知背景修改为圆角背景

效果图如图:

Android 10.0 原生SystemUI下拉通知栏UI背景设置为圆角背景的定制(一)_第1张图片

2.原生SystemUI下拉通知栏UI背景设置为圆角背景的定制(一)的核心类

frameworks\base\packages\SystemUI\res\layout\status_bar_notification_section_header.xml
frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/notification/row/ActivatableNotificationView.java
frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/notification/stack/NotificationStackScrollLayout.java
frameworks/base/packages/SystemUI/res/layout/notification_info.xml
frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/notification/row/NotificationGuts.java

3.原生SystemUI下拉通知栏UI背景设置为圆角背景的定制(一)的核心功能分析和实现
   3

你可能感兴趣的:(android,10.0,Rom定制化高级进阶,ui,systemui,frameworks,通知栏背景,通知圆角背景)