Error : Use of fullScreenIntent requires the USE_FULL_SCREEN_INTENT permission

Error : Use of fullScreenIntent requires the USE_FULL_SCREEN_INTENT permission

我正在全屏使用通知我的代码在 Oreo 及以下版本中有效 但是当我 运行 android-Q 时,我会低于异常

Use of fullScreenIntent requires the USE_FULL_SCREEN_INTENT permission

我正在使用 setFullScreenIntent() 全屏通知

这是我的代码

NotificationCompat.Builder notificationBuilder = new NotificationCompat.Builder(this, "123");

notificationBuilder.setAutoCancel(true)
            .setColor(ContextCompat.getColor(this, R.color.colorAccent))
            .setContentTitle(getString(R.string.app_name))
            .setContentText("Test")
            .setDefaults(Notification.DEFAULT_ALL)
            .setWhen(System.currentTimeMillis())
            .setFullScreenIntent(pendingIntent,true)
            .setSmallIcon(R.drawable.ic_launcher_background)
            .setAutoCancel(true);

mNotificationManager.notify(1000, notificationBuilder.build());

答案在这里

现在我们需要在清单文件中添加<uses-permission android:name="android.permission.USE_FULL_SCREEN_INTENT" />权限

Permissions changes for fullscreen intents

以 Android Q 或更高版本为目标并使用全屏通知的应用必须请求 USE_FULL_SCREEN_INTENT permission in their app's manifest file. This is a normal permission,因此系统会自动将其授予请求的应用

示例代码

<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
    package="xxx.xxx.xxx">

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

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

                <category android:name="android.intent.category.LAUNCHER" />
            </intent-filter>
        </activity>
    </application>

</manifest>

设置全屏意图

意图启动而不是将通知发布到状态栏。仅用于要求用户立即注意的极高优先级通知,例如用户已明确设置为特定时间的来电 phone 或闹钟。如果此功能用于其他用途,请为用户提供关闭它并使用普通通知的选项,因为这可能会造成极大的破坏。

https://developer.android.com/reference/android/app/Notification.Builder