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

对于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

你可能感兴趣的:(下拉状态栏背景去掉阴影,SystemUI,去掉阴影,android,framework,11SystemUI去掉阴影)