Android 10.0 SystemUI去掉QuickQsPanel的黑色透明背景

在10.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="fals

猜你喜欢

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