Android 11.0SystemUI下拉状态栏背景为透明去掉阴影

11.0对于SystemUI 状态栏的定制也是非常多的,最近有需求要求在下拉状态栏时,背景去掉原来的灰色,改为透明色
所以就要从状态栏下拉中,找到灰色背景是怎么生成的

接下来先看下
StatusBar
从相关的布局文件xml中可以找到状态栏主要的Layout:
SystemUI下拉通知栏的布局为super_status_bar.xml

<!-- This is the combined status bar / notification panel window. -->
<com.android.systemui.statusbar.phone.StatusBarWindowView
    xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:fitsSystemWindows

猜你喜欢

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