ARTICLE DETAIL

资讯详情

深耕网站建设、视觉设计与SEO优化的一线实战洞察。

Android16 屏蔽USB通知栏弹出(通知弹出时候屏幕色温异常)

Android16 屏蔽USB通知栏弹出(通知弹出时候屏幕色温异常)

        在有些大屏项目上,不需要弹出通知栏等原生UI,在RK3576里面,当有USB接入通知栏弹出时候,屏幕色温变化,通知栏miss后,色温恢复正常,所以需要屏蔽掉,影响体验。

         屏蔽方式如下:

 framework/base/packages/SystemUI/src/com/android/systemui/statusbar/NotificationListener.java里面修改:

diff --git a/base/packages/SystemUI/src/com/android/systemui/statusbar/NotificationListener.java b/base/packages/SystemUI/src/com/android/systemui/statusbar/NotificationListener.java index 5af987aba..988082742 100644 --- a/base/packages/SystemUI/src/com/android/systemui/statusbar/NotificationListener.java +++ b/base/packages/SystemUI/src/com/android/systemui/statusbar/NotificationListener.java @@ -148,11 +148,11 @@ public class NotificationListener extends NotificationListenerWi
返回列表