Android 10.0 SystemUI下拉状态栏UI定制化开发系列(一)

10.0定制化开发中,由于客户需求要求对整个SystemUI下拉状态栏和下拉通知栏部分的UI做定制,所以需要修改整个下拉状态栏的
UI布局页面,这要求对整个NotificationPanelView了解,定制UI才可以顺利完成
类似效果图:
在这里插入图片描述

定制化开发系列(一) 下拉状态栏布局的讲解
首选看下下拉状态栏的布局文件
status_bar_expanded.xml
路径:frameworks\base\packages\SystemUI\res\layout\status_bar_expanded.xml

<com.android.systemui.statusbar.phone.NotificationPanelView
    xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:systemui="http://schemas.android.com/apk/res-auto"
    android:id="@+id/notification_panel"
   

猜你喜欢

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