NewbieGuide
NewbieGuide copied to clipboard
显示的引导层,无法遮盖状态栏
我也遇到一样的问题,在Activity中使用时,不能遮盖状态栏
设置anchor为decorView
设置anchor为decorView
谢谢提醒,虽然已经通过
window.addFlags(WindowManager.LayoutParams.FLAG_TRANSLUCENT_STATUS)
修改activity使背景穿透状态栏,实现了全屏
NewbieGuide.with(this) .setLabel("home_page")//设置引导层标示区分不同引导层,必传!否则报错 .anchor(getWindow().getDecorView())//遮住状态栏 谢谢!