Android高版本dialog彈出黑色狀態欄

測試發現8.0系統彈出時會出現黑色的狀態欄很難忍受
添加依賴

implementation 'com.gyf.immersionbar:immersionbar:2.3.3-beta15'

dialog中透明狀態欄


ImmersionBar.with((Activity) context,this)
                .transparentStatusBar()
                .fitsSystemWindows(false)
                .statusBarDarkFont(false)
                .fullScreen(false)
                .navigationBarColor(R.color.white) //導航欄顏色,不寫默認黑色
                .navigationBarDarkIcon(true) //導航欄圖標是深色,不寫默認爲亮色
                .init();

發表評論
所有評論
還沒有人評論,想成為第一個評論的人麼? 請在上方評論欄輸入並且點擊發布.
相關文章