Android Window悬浮窗窗口全屏(隐藏导航栏状态栏)

Android Window悬浮窗窗口全屏(隐藏导航栏状态栏),第1张

在应用开发中,有时候需要利用d出全屏的悬浮窗,因为有导航栏显示所以总是不能全屏,所以需要设置某些属性 让窗口全屏显示

例如:
在onCreate中的这段代码

 Window window = getWindow();
            window.requestFeature(Window.FEATURE_NO_TITLE);
            // Inflate the decor view, so the attributes below are not overwritten by the theme.
            window.getDecorView();
            window.getAttributes().systemUiVisibility |= View.SYS

欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/web/992147.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-05-21
下一篇 2022-05-21

发表评论

登录后才能评论

评论列表(0条)

保存