1.前言
在12.0的系统rom定制化开发中,在原生系统SystemUI下拉状态栏的下拉通知栏的背景默认是白色四角的背景,
由于在产品设计中,在对下拉通知栏通知的背景需要把四角背景默认改成圆角背景,所以就需要分析系统原生下拉通知栏的每条通知的默认背景,
然后通过systemui的通知栏流程,设置默认下拉状态栏UI中的通知栏部分每一条通知背景修改为圆角背景
2.原生SystemUI下拉通知栏UI背景设置为圆角背景的定制(二)的核心类
frameworks\base\packages\SystemUI\src\com\android\systemui\statusbar\notification\row\ActivatableNotificationView.java
frameworks\base\packages\SystemUI\src\com\android\systemui\statusbar\notification\row\ExpandableOutlineView.java
frameworks\base\packages\SystemUI\src/com/android/systemui/statusbar/notification/stack/NotificationStackScrollLayout.java
3.原生SystemUI下拉通知栏UI背景设置为圆角背景的定制(二)的核心功能分析和实现 3.1 NotificationStackScrollLayout.java的核心代码分析和实现
@ShadeViewRefactor(RefactorComponent.COORDINATOR)
private ExpandableView getLastChildWithBackground() {
int childCount = getChildCount
版权归原作者 安卓兼职framework应用工程师 所有, 如有侵权,请联系我们删除。