创建基本通知

应用不在使用时,通知会提供有关应用中事件的简短及时信息。本文档介绍了如何创建具有各种功能的通知。如需了解 Android 上通知的显示方式,

请参阅通知概览。

如需查看使用通知的示例代码,请参阅 GitHub 上的 SociaLite 示例

此页面中的代码使用了 AndroidX

库中的 NotificationCompat API。借助这些 API,您可以添加仅在较新版

Android 上提供的功能,同时仍可提供对 Android 9(API 级别 28)的向后兼容性。

不过,某些功能(例如内嵌回复操作)在较旧版本上相当于空操作。

创建基本通知

通知的最基本和最紧凑的形式(也称为收起

形式)会显示图标、标题和少量文字内容。本部分介绍了如何创建用户可以点按以启动应用中

activity 的通知。

图 1. 包含图标、标题和一些文字的通知。

如需详细了解通知的各个部分,请参阅通知

结构。

声明运行时权限

Android 13(API 级别 33)及更高版本支持一项运行时权限,用于应用发布非豁免通知(包括前台服务 [FGS] 通知)。

需要在应用的清单文件中声明的权限如以下代码段所示:

...

如需详细了解运行时权限,请参阅

通知运行时权限。

设置通知内容

首先,使用

NotificationCompat.Builder对象设置通知的内容和渠道。以下示例展示了如何创建具有以下内容的通知:

小图标,通过 setSmallIcon() 设置。这是所必需的唯一用户可见内容。

标题,通过 setContentTitle() 设置。

正文文本,通过 setContentText() 设置。

通知优先级,通过 setPriority() 设置。优先级决定了通知在 Android 7.1 及更低版本上的干扰程度。对于 Android 8.0 及更高版本,请改为设置渠道重要性,如下一部分所示。

val textTitle = "Title"

val textContent = "Content"

val builder = NotificationCompat.Builder(context, CHANNEL_ID)

.setSmallIcon(R.drawable.ic_logo)

.setContentTitle(textTitle)

.setContentText(textContent)

.setPriority(NotificationCompat.PRIORITY_DEFAULT)NotificationsSnippets.kt

NotificationCompat.Builder 构造函数要求您提供渠道 ID。这是兼容 Android 8.0(API 级别

26)及更高版本所必需的,但会被较旧版本忽略。

默认情况下,通知的文字内容会被截断以适应单行显示。您可以通过创建展开式通知来显示更多信息。

图 2. 处于收起和展开形式的展开式通知。

如果您想要更长的通知,可以使用 setStyle() 添加样式模板来启用可展开的

通知。例如,以下代码会创建一个较大的文本区域:

val builder = NotificationCompat.Builder(context, CHANNEL_ID)

.setSmallIcon(R.drawable.ic_logo)

.setContentTitle("My notification")

.setContentText("Much longer text that cannot fit one line...")

.setStyle(NotificationCompat.BigTextStyle()

.bigText("Much longer text that cannot fit one line..."))

.setPriority(NotificationCompat.PRIORITY_DEFAULT)NotificationsSnippets.kt

如需详细了解其他大型通知样式,包括如何添加

图片和媒体播放控件,请参阅

创建展开式通知。

创建渠道并设置重要性

必须先通过向 createNotificationChannel() 传递 NotificationChannel 的实例在系统中注册应用的

通知渠道,然后才能在 Android 8.0 及更高版本上提供通知。以下代码会被 SDK_INT 版本的条件阻止:

fun createNotificationChannel(context: Context) {

// Create the NotificationChannel, but only on API 26+ because

// the NotificationChannel class is not in the Support Library.

if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.O) {

val name = context.getString(R.string.channel_name)

val descriptionText = context.getString(R.string.channel_description)

val importance = NotificationManager.IMPORTANCE_DEFAULT

val channel = NotificationChannel(CHANNEL_ID, name, importance).apply {

description = descriptionText

}

// Register the channel with the system.

val notificationManager: NotificationManager =

context.getSystemService(NotificationManager::class.java) as NotificationManager

notificationManager.createNotificationChannel(channel)

}

}NotificationsSnippets.kt

由于您必须先创建通知渠道,然后才能在 Android 8.0

及更高版本上发布任何通知,因此请在应用启动时立即执行这段代码。反复调用这段代码是安全的,因为创建现有通知渠道不会执行任何操作。

NotificationChannel 构造函数需要一个 importance,使用 NotificationManager 类中的

常量之一。此参数确定出现任何属于此渠道的通知时如何打断用户。使用 setPriority() 设置优先级,才能支持

Android 7.1 及更低版本,如上例所示。

虽然必须按以下示例所示设置通知重要性或优先级,但系统不能保证您会获得提醒行为。在某些情况下,系统可能会根据其他因素更改重要性级别,并且用户始终可以重新定义指定渠道适用的重要性级别。

如需详细了解不同级别的含义,请参阅

通知重要性级别。

设置通知的点按操作

每个通知都必须响应点按操作,通常是打开应用中与通知对应的 activity。为此,请指定通过 PendingIntent 对象定义的内容 Intent

,并将其传递给

setContentIntent()。

以下代码段展示了如何创建基本 Intent,以在用户点按通知时打开 activity:

// Create an explicit intent for an Activity in your app.

val intent = Intent(context, AlertDetails::class.java).apply {

flags = Intent.FLAG_ACTIVITY_NEW_TASK or Intent.FLAG_ACTIVITY_CLEAR_TASK

}

val pendingIntent: PendingIntent =

PendingIntent.getActivity(context, 0, intent, PendingIntent.FLAG_IMMUTABLE)

val builder = NotificationCompat.Builder(context, CHANNEL_ID)

.setSmallIcon(R.drawable.ic_logo)

.setContentTitle("My notification")

.setContentText("Hello World!")

.setPriority(NotificationCompat.PRIORITY_DEFAULT)

// Set the intent that fires when the user taps the notification.

.setContentIntent(pendingIntent)

.setAutoCancel(true)NotificationsSnippets.kt

此代码会调用 setAutoCancel(),它会在用户点按通知后自动 移除

通知。

上例中的 intent 标志可确保用户在通过通知打开应用后获得符合预期的导航体验。您可能需要使用它,具体取决于您要启动的 activity 类型,类型可能包括:

专门用于响应通知的 activity。

用户在正常使用应用时不会无缘无故想导航到这个 activity,

因此该 activity 会启动一个新任务,而不是添加到应用的

现有 任务和返回堆栈。这是在上一个示例中创建的 intent 类型。

应用的常规应用流程中存在的 activity。在这种情况下,

启动 activity 时会创建返回堆栈,以便保留用户对

返回和向上按钮的预期。

显示通知

如需显示通知,请调用

NotificationManagerCompat.notify(),并将通知的唯一 ID 和

的结果传递给它。NotificationCompat.Builder.build()如以下示例所示:

with(NotificationManagerCompat.from(context)) {

if (ActivityCompat.checkSelfPermission(

context,

Manifest.permission.POST_NOTIFICATIONS

) != PackageManager.PERMISSION_GRANTED

) {

// TODO: Consider calling ActivityCompat#requestPermissions here

// to request the missing permissions, and then overriding

// public fun onRequestPermissionsResult(requestCode: Int, permissions: Array,

// grantResults: IntArray)

// to handle the case where the user grants the permission. See the documentation

// for ActivityCompat#requestPermissions for more details.

return@with

}

// notificationId is a unique int for each notification that you must define.

notify(notificationId, builder.build())NotificationsSnippets.kt

请保存您传递到 NotificationManagerCompat.notify() 的通知 ID,

因为当您想要更新或

移除通知时,需要使用以下 ID。

此外,如需在搭载 Android 13 及更高版本的设备上测试基本通知,请手动开启通知或创建一个对话框来请求通知。

**注意** :从 Android 8.1(API 级别 27)开始,应用每秒最多只能发出一次通知

提示音。如果应用在一秒内发出了多条通知,这些通知都会按预期显示,但是每秒中只有第一条通知发出提示音。

添加操作按钮

一个通知最多可以提供三个操作按钮,让用户能够快速响应,例如暂停提醒,甚至回复短信。但这些

操作按钮不得重复用户在点按

通知时执行的操作。

图 3. 包含一个操作按钮的通知。

如需添加操作按钮,请将 PendingIntent 传递给 addAction()

方法。这就像在设置通知的默认点按操作,不同的是

不会启动 activity,而是可以完成各种其他任务,例如启动在后台执行作业的

BroadcastReceiver,这样该

操作就不会干扰已经打开的应用。

例如,以下代码展示了如何向特定接收器发送广播:

val ACTION_SNOOZE = "snooze"

val snoozeIntent = Intent(context, MyBroadcastReceiver::class.java).apply {

action = ACTION_SNOOZE

putExtra(EXTRA_NOTIFICATION_ID, 0)

}

val snoozePendingIntent: PendingIntent =

PendingIntent.getBroadcast(context, 0, snoozeIntent, PendingIntent.FLAG_IMMUTABLE)

val builder = NotificationCompat.Builder(context, CHANNEL_ID)

.setSmallIcon(R.drawable.ic_logo)

.setContentTitle("My notification")

.setContentText("Hello World!")

.setPriority(NotificationCompat.PRIORITY_DEFAULT)

.setContentIntent(pendingIntent)

.addAction(R.drawable.snooze, context.getString(R.string.snooze),

snoozePendingIntent)NotificationsSnippets.kt

如需详细了解如何构建 BroadcastReceiver 以运行后台

工作,请参阅广播概览。

如果您尝试构建包含媒体播放按钮,

例如暂停和跳过曲目,请参阅如何创建包含媒体

控件的通知。

注意: 在 Android 10(API 级别 29)及更高版本中,如果应用不提供自己的通知操作按钮,则平台会自动

生成通知操作按钮。如果您

不希望应用通知显示任何建议的回复或操作,

可以使用

setAllowGeneratedReplies() 和

setAllowSystemGeneratedContextualActions()选择停用系统生成的回复和操作。

添加直接回复操作

Android 7.0(API 级别 24)中引入的直接回复操作允许用户直接在通知中输入文本。然后,文本会直接提交给应用,而不必打开

activity。例如,您可以使用直接回复操作让用户从通知内回复短信或更新任务列表。

图 4. 点按“回复”按钮会打开文本输入框。

直接回复操作在通知中显示为一个额外按钮,可打开文本输入。当用户完成输入后,系统会将文本回复附加到您为通知操作指定的 intent,并将

intent 发送到您的应用。

添加回复按钮

如需创建支持直接回复的通知操作,请按照如下所述操作:

创建一个可添加到通知操作的 RemoteInput.Builder

实例。此类的构造函数接受系统用作文本输入键的字符串。您的应用稍后会使用该键检索输入文本。

// Key for the string that's delivered in the action's intent.

val replyLabel: String = context.resources.getString(R.string.reply_label)

val remoteInput: RemoteInput = RemoteInput.Builder(KEY_TEXT_REPLY).run {

setLabel(replyLabel)

build()

}NotificationsSnippets.kt

为回复操作创建 PendingIntent。

// Build a PendingIntent for the reply action to trigger.

val replyPendingIntent: PendingIntent =

PendingIntent.getBroadcast(context,

conversationId,

getMessageReplyIntent(conversationId),

PendingIntent.FLAG_MUTABLE)NotificationsSnippets.kt

注意: 如果重复使用 PendingIntent,则用户回复的会话可能不是他们所认为的会话。您必须为每个会话提供一个不同的请求代码,或者提供您对任何其他会话的回复 intent 调用 equals()

时不会返回 true 的 intent。会话 ID 会

作为 intent 的 extra 包的一部分被频繁传递,但调用 equals() 时会被忽略。

将 RemoteInput 对象附加到操作,使用

addRemoteInput()。

// Create the reply action and add the remote input.

val action: NotificationCompat.Action =

NotificationCompat.Action.Builder(R.drawable.reply,

context.getString(R.string.reply_label), replyPendingIntent)

.addRemoteInput(remoteInput)

.build()NotificationsSnippets.kt

对通知应用操作并发出通知。

// Build the notification and add the action.

val newMessageNotification = NotificationCompat.Builder(context, CHANNEL_ID)

.setSmallIcon(R.drawable.ic_message)

.setContentTitle(context.getString(R.string.title))

.setContentText(context.getString(R.string.content))

.addAction(action)

.build()

// Issue the notification.

NotificationManagerCompat.from(context).notify(notificationId, newMessageNotification)

当用户触发通知操作时,系统会提示用户输入回复,如图 4 所示。

从回复中检索用户输入

如需从通知的回复界面接收用户输入,请调用

RemoteInput.getResultsFromIntent(),并将Intent收到的

您的BroadcastReceiver传递给它:

private fun getMessageText(intent: Intent): CharSequence? {

return RemoteInput.getResultsFromIntent(intent)?.getCharSequence(KEY_TEXT_REPLY)

}NotificationsSnippets.kt

处理完文本后,必须使用相同的 ID 和标记(如果使用)调用 NotificationManagerCompat.notify()

来更新通知。若要隐藏直接回复界面并向用户确认他们的回复已收到并得到正确处理,则必须完成该操作。

// Build a new notification, which informs the user that the system

// handled their interaction with the previous notification.

val repliedNotification = NotificationCompat.Builder(context, CHANNEL_ID)

.setSmallIcon(R.drawable.message)

.setContentText(context.getString(R.string.replied))

.build()

// Issue the new notification.

NotificationManagerCompat.from(context).notify(notificationId, repliedNotification)NotificationsSnippets.kt

检索其他数据

处理其他数据类型的方式与 RemoteInput 类似。以下示例使用图片作为输入。

val replyLabel: String = context.resources.getString(R.string.reply_label)

val remoteInput: RemoteInput = RemoteInput.Builder(KEY_REPLY).run {

setLabel(replyLabel)

// Allow for image data types in the input.

// This method can be used again to allow for other data types.

setAllowDataType("image/*", true)

build()

}NotificationsSnippets.kt

调用 RemoteInput#getDataResultsFromIntent 并提取相应的数据。

class ReplyReceiver : BroadcastReceiver() {

override fun onReceive(context: Context, intent: Intent) {

val dataResults = RemoteInput.getDataResultsFromIntent(intent, KEY_REPLY)

val imageUri: Uri? = dataResults?.get("image/*") as? Uri

if (imageUri != null) {

// Extract the image

context.contentResolver.openInputStream(imageUri)?.use { inputStream ->

val bitmap = BitmapFactory.decodeStream(inputStream)

// Display the image

// ...

}

}

}

companion object {

const val KEY_REPLY = "key_reply"

const val KEY_TEXT_REPLY = "key_text_reply"

}

}ReplyReceiver.kt

在处理这个新通知时,请使用传递给

接收者的 onReceive() 方法的上下文。

通过调用

setRemoteInputHistory()将回复附加到通知底部。但如果要构建即时通讯应用,

应创建消息式通知,并在

会话中附加新消息。

如需了解有关即时通讯应用通知的更多建议,请参阅有关

即时通讯应用的最佳做法部分。

显示紧急消息

您的应用可能需要显示紧急的时效性消息,例如来电或响铃警报。在这些情况下,您可以将全屏 intent 与通知关联。

**注意** :包含全屏 intent 的通知有很强的干扰性,因此这类通知只能用于最紧急的时效性消息。

调用通知时,根据设备的锁定状态,用户会看到以下情况之一:

如果用户设备被锁定,会显示全屏 activity,覆盖锁屏。

如果用户设备处于解锁状态,通知会以展开形式显示,其中包含用于处理或关闭通知的选项。

注意 :如果应用的目标平台是 Android 10(API 级别 29)或更高版本,必须在应用清单文件中请求

USE_FULL_SCREEN_INTENT权限,以便系统启动与时效性通知关联的全屏 activity。

以下代码段展示了如何将通知与全屏 intent 关联:

val fullScreenIntent = Intent(context, ImportantActivity::class.java)

val fullScreenPendingIntent = PendingIntent.getActivity(context, 0,

fullScreenIntent, PendingIntent.FLAG_IMMUTABLE)

val builder = NotificationCompat.Builder(context, CHANNEL_ID)

.setSmallIcon(R.drawable.ic_logo)

.setContentTitle("My notification")

.setContentText("Hello World!")

.setPriority(NotificationCompat.PRIORITY_DEFAULT)

.setFullScreenIntent(fullScreenPendingIntent, true)NotificationsSnippets.kt

设置锁定屏幕公开范围

如需控制锁屏状态中通知的可见详情级别,

请调用 setVisibility() 并指定以下值之一:

VISIBILITY_PUBLIC:通知的完整内容显示在锁定屏幕上。

VISIBILITY_SECRET:通知的任何部分都不会显示在锁定屏幕上。

VISIBILITY_PRIVATE:只有基本信息(例如通知图标和内容标题)会显示在锁定屏幕上。通知的完整内容不会显示。

当您设置 VISIBILITY_PRIVATE 时,您还可以提供通知内容的备用版本,以隐藏特定详细信息。例如,短信应用可能会显示一条通知,提示“您有

3 条新短信”,但是隐藏了短信内容和发件人。如需提供此备用通知,首先请像平时一样使用 NotificationCompat.Builder

创建备用通知。然后使用 setPublicVersion() 将备用通知

附加到普通通知中。

请注意,对于通知在锁屏状态上是否可见,用户始终拥有最终控制权,并且可以根据应用的通知渠道来控制公开范围。

更新通知

如需在发出通知后对其进行更新,请再次调用 NotificationManagerCompat.notify(),并将之前使用的具有同一 ID

的通知传递给该方法。如果之前的通知已被关闭,则系统会创建一个新通知。

您可以选择性调用 setOnlyAlertOnce(),这样通知

只会在通知首次出现时打断用户(通过声音、振动或视觉提示),而之后更新则不会再打断用户。

注意 :Android 会在更新通知时应用速率限制。如果您过于频繁地发布有关某条通知的更新(不到一秒内发布多个),系统可能会放弃部分更新。

移除通知

除非发生以下情况之一,否则通知仍然可见:

用户关闭通知。

用户点按通知(如果您在创建通知时调用了 setAutoCancel())。

您针对特定的通知 ID 调用了 cancel()。此方法还会删除当前通知。

您调用了 cancelAll() 方法,该方法将移除之前发出的所有通知。

指定持续时间已过(如果您在创建

通知时使用 setTimeoutAfter() 设置了超时)。如果需要,您可以在指定的超时持续时间过去之前取消通知。

有关即时通讯应用的最佳做法

在为即时通讯和聊天应用创建通知时,请考虑此处列出的最佳做法。

使用 MessagingStyle

从 Android 7.0(API 级别 24)起,Android 提供了专用于消息内容的通知样式模板。使用

NotificationCompat.MessagingStyle类,您可以更改在通知中显示的多个

标签,包括会话标题、

其他消息和通知的内容视图。

以下代码段展示了如何使用 MessagingStyle 类自定义通知的样式。

val message1 = NotificationCompat.MessagingStyle.Message(

messages[0].text,

messages[0].time,

messages[0].sender

)

val message2 = NotificationCompat.MessagingStyle.Message(

messages[1].text,

messages[1].time,

messages[1].sender

)

notification = NotificationCompat.Builder(context, CHANNEL_ID)

.setSmallIcon(R.drawable.ic_logo)

.setStyle(

NotificationCompat.MessagingStyle(Person.Builder().setName("Me").build())

.addMessage(message1)

.addMessage(message2)

)

.build()NotificationsSnippets.kt

从 Android 9.0(API 级别 28)开始,您还需要使用

Person类,以便获得通知

及其头像的最佳呈现效果。

使用 NotificationCompat.MessagingStyle 时,请执行以下操作:

调用 MessagingStyle.setConversationTitle() 为超过两个用户的群聊设置标题。一个好的会话标题可能是群组名称,也可能是会话参与者的列表(如果没有名称)。否则,消息可能会被误以为属于与会话中最近消息发送者的一对一会话。

使用 MessagingStyle.setData() 方法包含媒体消息

如图片等。支持 image/* 格式的 MIME 类型。

使用直接回复

直接回复允许用户以内嵌方式回复消息。

在用户通过内嵌回复操作回复后,使用

MessagingStyle.addMessage()更新MessagingStyle

通知,并且不要撤消或取消通知。不取消通知可以让用户从通知发送多个回复。

如需让内嵌回复操作与 Wear OS 兼容,请调用

Action.WearableExtender.setHintDisplayInlineAction(true)。

使用

addHistoricMessage()

方法通过向通知添加历史

消息向直接回复会话提供上下文。

启用智能回复

如需启用智能回复,请对setAllowGeneratedResponses(true)

回复操作调用。这样,在通知桥接到 Wear OS 设备后,用户就能使用智能回复响应。智能回复响应由一个完全在手表上的机器学习模型使用 NotificationCompat.MessagingStyle 通知提供的上下文生成,不会将数据上传到互联网上来生成回复。

添加通知元数据

分配通知元数据以告知系统如何在设备处于免打扰模式时处理应用

通知。例如,使用 addPerson() 或

setCategory(Notification.CATEGORY_MESSAGE) 方法替换“勿扰”设置。

[an error occurred while processing the directive]
Copyright © 2088 迷你世界杯_竞猜世界杯 - xhfzmy.com All Rights Reserved.
友情链接