1. 程式人生 > >android M N下拉狀態列背景透明 原始碼

android M N下拉狀態列背景透明 原始碼

原生程式碼下拉狀態列會是一個黑色半透明的背景。並且當qs_quicksettings_header回縮時會回撥alpha值改變透明度。所以只需要阻止透明度改變即可。

程式碼位置。android/systemui/statusbar/phone/ScrimController.java.    updateScrimColor(View)方法註釋 ((ScrimView) scrim).setScrimColor(Color.argb((int) (alpha * 255), 0, 0, 0));即可。