我正在全屏使用通知,我的代码适用于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());
答案 0 :(得分:1)
这是答案
现在我们需要在清单文件中添加<uses-permission android:name="android.permission.USE_FULL_SCREEN_INTENT" />
权限
以Android Q或更高版本为目标并使用具有全屏意图的通知的应用必须在其应用的清单文件中请求USE_FULL_SCREEN_INTENT
权限。这是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>
答案 1 :(得分:0)
setFullScreenIntent
旨在启动而不是将通知发布到状态栏的意图。仅用于需要用户立即注意的极高优先级通知,例如用户已将其明确设置为特定时间的来电或闹钟。如果将此功能用于其他用途,请给用户一个选项以将其关闭并使用常规通知,因为这可能会造成极大破坏。
https://developer.android.com/reference/android/app/Notification.Builder