只有API26中的用户权限才能覆盖其他应用/锁定屏幕

时间:2017-10-21 07:19:54

标签: android android-windowmanager

我正在尝试创建一个可以全屏弹出并显示在屏幕锁定上的活动(类似于Android中的每个闹钟,显示一个全屏对话框以消除警报)。这是我显示窗口的代码:

    if (Build.VERSION.SDK_INT>=26) windowType = WindowManager.LayoutParams.TYPE_APPLICATION_OVERLAY;
    else windowType = WindowManager.LayoutParams.TYPE_TOAST;
    WindowManager.LayoutParams params = new WindowManager.LayoutParams(
            windowType,
            WindowManager.LayoutParams.FLAG_TURN_SCREEN_ON
                    | WindowManager.LayoutParams.FLAG_SHOW_WHEN_LOCKED
                    | WindowManager.LayoutParams.FLAG_KEEP_SCREEN_ON
                    | WindowManager.LayoutParams.FLAG_FULLSCREEN,
            PixelFormat.TRANSLUCENT
    );
    wm = (WindowManager) getApplicationContext()
            .getSystemService(Context.WINDOW_SERVICE);

    mTopView = (ViewGroup) getLayoutInflater().inflate(R.layout.activity_alarm_screen, null);
    getWindow().setAttributes(params);
    wm.addView(mTopView, params);

我担心的是,我的应用程序需要特殊权限才能在其他应用程序上显示此窗口,这会吓跑用户。在API25及更低版本中,我使用TYPE_TOAST代替TYPE_APPLICATION_OVERLAY,但在API26中,它导致:

    FATAL EXCEPTION: main Process: com.app.alarm, PID: 31372
java.lang.RuntimeException: Unable to start activity ComponentInfo{com.app.alarm/com.app.alarm.Activities.AlarmScreenActivity}: android.view.WindowManager$BadTokenException: Unable to add window android.view.ViewRootImpl$W@601b8a2 -- permission denied for window type 2009 
                                                                      at android.app.ActivityThread.performLaunchActivity(ActivityThread.java:2817)

我看到了this question,但它并没有避免要求特别许可。

API26中的任何其他技巧都可以避免让用户允许我的应用真正需要的特殊权限吗?

0 个答案:

没有答案