How to programmatically grant the “draw over other apps” permission in android?

You can check and ask for overlay permission to draw over other apps using this

if (!Settings.canDrawOverlays(this)) {
    Intent intent = new Intent(Settings.ACTION_MANAGE_OVERLAY_PERMISSION, Uri.parse("package:" + getPackageName()));
    startActivityForResult(intent, 0);
}

Leave a Comment