SYSTEM_ALERT_WINDOW选项显示为灰色(不可更改)

时间:2016-09-22 12:59:25

标签: android permissions system-alert-window

我正在处理使用SYSTEM_ALERT_WINDOW权限的应用。我已经向Manifest添加了许可。

在我的活动中,我已添加以下代码以在运行时询问权限。

@Override
protected void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    setContentView(R.layout.activity_main);
    Toolbar toolbar = (Toolbar) findViewById(R.id.toolbar);
    setSupportActionBar(toolbar);

    Button button = (Button) findViewById(R.id.button);
    button.setOnClickListener(new View.OnClickListener() {
        @Override
        public void onClick(View v) {
            if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.M) {
                Intent myIntent = new Intent(Settings.ACTION_MANAGE_OVERLAY_PERMISSION, Uri.parse("package:" + getPackageName()));
                startActivityForResult(myIntent, 5469);
            }
        }
    });
}

@Override
protected void onActivityResult(int requestCode, int resultCode, Intent data) {
    switch (requestCode) {
        case 5469: {
            Toast.makeText(this,"Permission Granted!",Toast.LENGTH_SHORT).show();
            return;
        }
    }
}

但是,作为"吸取其他应用程序"打开设置页面,“切换按钮”。允许权限显示为灰色(不可点击)。

以下是截图:

enter image description here

清单代码:

<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.example.graphics.unlockbrtest">

<application
    android:allowBackup="true"
    android:icon="@mipmap/ic_launcher"
    android:label="@string/app_name"
    android:supportsRtl="true"
    android:theme="@style/AppTheme">
    <activity
        android:name=".MainActivity"
        android:label="@string/app_name"
        android:theme="@style/AppTheme.NoActionBar">
        <intent-filter>
            <action android:name="android.intent.action.MAIN" />
            <category android:name="android.intent.category.LAUNCHER" />
        </intent-filter>
    </activity>
    <activity
        android:name=".SettingsActivity"
        android:label="Settings"
        android:theme="@style/AppTheme.NoActionBar" />

    <receiver
        android:name=".UnlockReceiver"
        android:enabled="true">
        <intent-filter>
            <action android:name="android.intent.action.USER_PRESENT" />
        </intent-filter>
    </receiver>

    <activity
        android:name=".FloatingActivity"
        android:theme="@android:style/Theme.Dialog" >
        <intent-filter>
            <action android:name="android.intent.action.MAIN" />
            <category android:name="android.intent.category.LAUNCHER" />
        </intent-filter>
    </activity>

    <uses-permission android:name="android.permission.SYSTEM_ALERT_WINDOW"/>

</application>

如果选项显示为灰色,我做错了什么? 提前谢谢!

1 个答案:

答案 0 :(得分:3)

<uses-permission>元素移动为<manifest>元素之外的<application>的直接子元素。