美文网首页
Android Dialog全屏方法

Android Dialog全屏方法

作者: enchanted1107 | 来源:发表于2020-10-16 16:46 被阅读0次

Window window =this.getWindow();

if (window !=null) {

window.clearFlags(WindowManager.LayoutParams.FLAG_DIM_BEHIND);

    window.getDecorView().setPadding(0, 0, 0, 0);

    window.setBackgroundDrawableResource(android.R.color.transparent);

    WindowManager.LayoutParams lp =this.getWindow().getAttributes();

    lp.width = WindowManager.LayoutParams.MATCH_PARENT;

    lp.height = WindowManager.LayoutParams.MATCH_PARENT;

    window.setAttributes(lp);

}

相关文章

网友评论

      本文标题:Android Dialog全屏方法

      本文链接:https://www.haomeiwen.com/subject/xdzzpktx.html