Android 10.0 SystemUI 下拉通知栏通知默认展开

10.0 在对SystemUI下拉通知栏做定制的时候,最后一条通知默认是收缩的 点击按钮 就会展开 原生系统如此,为了更美观 所以要求最后一条通知也默认展开
原来样式
在这里插入图片描述

修改后样式
在这里插入图片描述

先看下NotificationViewHierarchyManager 通知管理类

@Inject
public NotificationViewHierarchyManager(Context context,
@Named(MAIN_HANDLER_NAME) Handler mainHandler,
NotificationLockscreenUserManager notificationLockscreenUserManager,
NotificationGroupManager groupManager,
VisualStabilityManager visualStabilityManager,
StatusBarStateController statusBarStateController,
NotificationEntryManager notificationEntryManager,
Lazy<ShadeController

猜你喜欢

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