测试发现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();