android 全局无标题透明dialog

在自定义Dialog的构造函数中添加以下代码:
getWindow().setType(WindowManager.LayoutParams.TYPE_SYSTEM_ALERT);
getWindow().setBackgroundDrawableResource(android.R.color.transparent);

requestWindowFeature(Window.FEATURE_NO_TITLE);


需要权限:



targetSdkVersion 大于等于23的情况下,还要申请允许在其他应用的上层显示:

if (Build.VERSION.SDK_INT >= 23) {
            if (!Settings.canDrawOverlays(this)) {
                Intent intent = new Intent(Settings.ACTION_MANAGE_OVERLAY_PERMISSION);
                intent.addFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
                startActivity(intent);
            } else {
                //show dialog


            }
        }

你可能感兴趣的:(Android学习笔记)