Android 11.0 SystemUI去掉首次下拉状态栏QuickQsPanel的黑色透明背景

在11.0的原生系统中,首次下拉状态栏的QuickQsPanel默认会有黑色透明背景,当设置默认壁纸比较透明的时候 能够看到很清楚,显得特别不美观,所以要去掉这些黑色透明背景
而下拉状态栏布局文件为qs_panel.xml

<com.android.systemui.qs.QSContainerImpl
    xmlns:android="http://schemas.android.com/apk/res/android"
    android:id="@+id/quick_settings_container"
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:clipToPadding="false"
    android:clipChildren=

猜你喜欢

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