public class FullScreenDialog extends Dialog {
public FullScreenDialog(Context context) {
super(context);
requestWindowFeature(Window.FEATURE_NO_TITLE);
// 按空白处不能取消
setCanceledOnTouchOutside(false);
}
@Override
public void show() {
final Window window = getWindow();
if (window != null) {
// 获取焦点,防止导航栏闪烁
window.setFlags(WindowManager.LayoutParams.FLAG_NOT_FOCUSABLE,
WindowManager.LayoutParams.FLAG_NOT_FOCUSABLE);
}
super.show();
hideNavigationBar(window);
if (window == null) {
return;
}
window.clearFlags(WindowManager.LayoutParams.FLAG_NOT_FOCUSABLE);
window.setSoftInputMode(WindowManager.LayoutParams.SOFT_INPUT_ADJUST_NOTHING);
window.setLayout(WindowManager.LayoutParams.MATCH_PARENT, WindowManager.LayoutParams.MATCH_PARENT);
window.setFlags(WindowManager.LayoutParams.FLAG_FULLSCREEN, WindowManager.LayoutParams.FLAG_FULLSCREEN);
// 设置全屏属性
window.addFlags(WindowManager.LayoutParams.FLAG_LAYOUT_NO_LIMITS);
// 设置window背景透明
window.setBackgroundDrawableResource(android.R.color.transparent);
WindowManager.LayoutParams lp = window.getAttributes();
lp.alpha = 1.0f;
lp.dimAmount = 0.0f; //dimAmount在0.0f和1.0f之间,0.0f完全不暗,1.0f全暗
lp.format = PixelFormat.TRANSPARENT;
if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.P) {
// 延伸显示区域到刘海
lp.layoutInDisplayCutoutMode = WindowManager.LayoutParams.LAYOUT_IN_DISPLAY_CUTOUT_MODE_SHORT_EDGES;
}
window.setAttributes(lp);
window.getDecorView().setPadding(0, 0, 0, 0);
}
/**
* 隐藏导航栏
*
* @param window window
*/
public void hideNavigationBar(final Window window) {
if (window == null) {
return;
}
final int uiOptions = View.SYSTEM_UI_FLAG_IMMERSIVE_STICKY
// Set the content to appear under the system bars so that the
// content doesn't resize when the system bars hide and show.
| View.SYSTEM_UI_FLAG_LAYOUT_STABLE
| View.SYSTEM_UI_FLAG_LAYOUT_HIDE_NAVIGATION
| View.SYSTEM_UI_FLAG_LAYOUT_FULLSCREEN
// Hide the nav bar and status bar
| View.SYSTEM_UI_FLAG_HIDE_NAVIGATION
| View.SYSTEM_UI_FLAG_FULLSCREEN;
window.getDecorView().setSystemUiVisibility(uiOptions);
}
}
全局居中dialog
sunbofiy232024-01-09 21:29
相关推荐
头发还在的女程序员9 小时前
医院陪诊管理系统怎么选择?——2026 年选型避坑与架构参考CodeStats9 小时前
【Spring事务】Spring事务注解 @Transactional 完整体系:从 MySQL 隔离级别到 MyBatis 原理详解我命由我1234510 小时前
Android 开发问题:为 PDFView 设置一个带有黑色边框的背景 drawable,但边框没有生效都叫我大帅哥12 小时前
从Python到Java:为什么企业级Agent最终会选择Java?wanderist.12 小时前
Lambda表达式在算法竞赛中的应用腻害兔13 小时前
【若依项目-产品经理视角】RuoYi-Vue-Pro 源码拆解:IM 即时通讯模块,一个被低估的「全功能聊天系统」心念枕惊14 小时前
.NET CORE 授权进阶-角色、策略与动态权限实现景同学15 小时前
把 AI 用到线上运维:可行、有效,前提是喂足信息——一次 Full GC 排障实录C++、Java和Python的菜鸟16 小时前
第7章 后端Web实战(Tlias系统)憧憬成为java架构高手的小白16 小时前
黑马八股--spring框架学习