Android 12.0下拉状态栏通知栏的通知设置默认展开

1.概述

在12.0的产品定制化中,对于SystemUI的定制也是常用的功能,而在下拉状态栏中的通知栏部分也是极其重要的部分,每条通知实时更新在通知栏部分,由于通知栏高度的限制,每条通知是默认收缩的,功能开发需要要求通知默认展开,所以就要从通知的加载流程分析

如图:

 

 

 2.通知栏通知设置默认展开的相关代码

      /frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/NotificationViewHierarchyManager.java
      /frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/phone/StatusBarNotificationPresenter.java
      frameworks\base\packages\SystemUI\res\values\config.xml

3.通知栏通知设置默认展开的相关代码以及功能分析
 3.1 StatusBarNotificationPresenter.java关于通知栏通知的相关管理

   public class StatusBarNotificationPresenter implements NotificationPresenter,
    ConfigurationController.ConfigurationListener,
    NotificationRowBinderImpl.BindRowCallback,
    CommandQueue.C

你可能感兴趣的:(android,12.0,Rom定制化系统讲解,android,systemui,下拉通知栏默认展开,展开下拉通知栏,默认展开下拉通知栏通知)