Android permission denied for window type 2010 in Marshmallow or higher

前端 未结 4 1484
醉酒成梦
醉酒成梦 2021-01-19 06:22

I am try to make Chathead type overly draw via Android Service on my app like bellow image.

This chat head app works on An

相关标签:
4条回答
  • 2021-01-19 07:08

    Strating from version M (api level 23) Android have the new algorithm of requesting permission in runtime. See here: https://developer.android.com/training/permissions/requesting.html

    0 讨论(0)
  • 2021-01-19 07:12

    Call this method to ask for permission before showing chat head:

     public void addOverlay() {
        if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.M) {
            if (!Settings.canDrawOverlays(this)) {
                askedForOverlayPermission = true;
                Intent intent = new Intent(Settings.ACTION_MANAGE_OVERLAY_PERMISSION, Uri.parse("package:" + getPackageName()));
                startActivityForResult(intent, OVERLAY_PERMISSION_CODE);
            }
        }
    }
    

    after that on Permission result if user allows for permission then only you can show chat head like below:

     @Override
    protected void onActivityResult(int requestCode, int resultCode, Intent data) {
        super.onActivityResult(requestCode, resultCode, data);
        if (requestCode == OVERLAY_PERMISSION_CODE) {
            askedForOverlayPermission = false;
            if (Settings.canDrawOverlays(this)) {
                // SYSTEM_ALERT_WINDOW permission not granted...
                //Toast.makeText(MyProtector.getContext(), "ACTION_MANAGE_OVERLAY_PERMISSION Permission Granted", Toast.LENGTH_SHORT).show();
                Intent serviceIntent = new Intent(Homepage.this, ChatHeadService.class);
                serviceIntent.putExtra("removeUserId", friendId);
                startService(serviceIntent);
    
            } else {
                 Toast.makeText(MyProtector.getContext(), "ACTION_MANAGE_OVERLAY_PERMISSION Permission Denied", Toast.LENGTH_SHORT).show();
            }
        }
    

    Let me know if it helps you... best of luck.

    0 讨论(0)
  • 2021-01-19 07:13

    Overlay with type = TYPE_PHONE is deprecated in Orea(API level 26). Only TYPE_APPLICATION_OVERLAY is supported for non-system apps.

    0 讨论(0)
  • 2021-01-19 07:16

    it looks like your addView() method is failing. I've fixed that issue (in some cases) using WindowManager.LayoutParams.TYPE_PHONE for Android SDK under 8.0 and WindowManager.LayoutParams.TYPE_APPLICATION_OVERLAY for 8.0 and above. You could add some automatic selection in order to grant major compatibility (depending on the active SDK platform) but since Google Play doesn't allows APKs under 8.0, it's clearly unnecessary. Hope it helps.

    0 讨论(0)
提交回复
热议问题