跳转到主要内容
OneSignal 的 Android 实时通知让您能够向单个通知发送实时更新,减少杂乱并提高参与度。这些通知保持持久性并动态更新其内容——非常适合体育比分、下载进度或事件跟踪。 要接收实时通知,Android 用户必须启用推送通知。

要求

  • 您的应用必须使用最新版本的 OneSignal SDK
  • Android 用户必须启用推送通知权限。

实时通知 vs. 标准推送

与每次发送新通知的常规推送通知不同,实时通知使用单个随时间更新的通知。更新通过使用相同 collapse_id创建消息 API 发送。

配置

1. 实现通知服务扩展

创建一个实现 INotificationServiceExtensionNotificationServiceExtension 类。此类拦截传入的通知并可以修改或覆盖它们。
有关更多详细信息,请参阅 Android 通知服务扩展
NotificationServiceExtention.kt
package com.onesignal.sample.android

import android.app.NotificationChannel
import android.app.NotificationManager
import android.content.Context
import android.os.Build
import com.onesignal.notifications.INotificationReceivedEvent
import com.onesignal.notifications.INotificationServiceExtension
import org.json.JSONObject
import java.util.logging.Logger

class NotificationServiceExtension : INotificationServiceExtension {
  override fun onNotificationReceived(event: INotificationReceivedEvent) {
        val context = event.context
        val notificationManager = context.getSystemService(Context.NOTIFICATION_SERVICE) as? NotificationManager
            ?: run {
                logger.warning("NotificationManager not available.")
                return
            }

        notificationManager.let {
            if (!notificationChannelsCreated) {
                createNotificationChannels(notificationManager)
            }
        }

        // Use `additional_data`to submit the Live Notification payload.
    		val additionalData = event.notification.additionalData
        val liveNotificationPayload = additionalData?.optJSONObject("live_notification")
        if (liveNotificationPayload == null) {
            logger.info("No live notification payload found. Showing original notification.")
            return
        }

        event.preventDefault()
        handleLiveNotification(event, liveNotificationPayload, notificationManager, context)
    }
}

2. 将扩展添加到 Android 清单

  <meta-data android:name="com.onesignal.NotificationServiceExtension"
              android:value="com.onesignal.sample.android.NotificationServiceExtension" />

3. 创建实时通知类型

实时通知类型指示要启动哪个实时通知。

定义键

实时通知通过 key 引用,它决定如何路由更新。
NotificationServiceExtention.kt
private const val PROGRESS_LIVE_NOTIFICATION = "progress"

创建通知渠道

渠道定义通知的行为方式(声音、振动、外观)。您必须为实时通知类型创建渠道。我们建议:
  • 进度通知使用低重要性
  • 禁用徽章
  • 将声音和振动保持在最低限度
有关更多信息,请参阅 Android 通知渠道类别

设计实时通知

设计实时通知时,您可以灵活地为每种更新类型创建通知设计。您创建的每个设计都必须分配特定类型,允许实时通知的不同呈现。
NotificationServiceExtention.kt
private fun updateProgressNotification(
        liveNotificationUpdates: JSONObject,
        context: Context,
        notificationManager: NotificationManager
    ) {
        val currentProgress = liveNotificationUpdates.optInt("current_progress", 0)

        val builder = NotificationCompat.Builder(context, PROGRESS_CHANNEL_ID)
            .setContentTitle("Progress Live Notifications")
            .setContentText("It's working...")
            .setSmallIcon(android.R.drawable.ic_media_play)
            .setLargeIcon(BitmapFactory.decodeResource(context.resources, android.R.drawable.ic_dialog_info))
            .setOngoing(true)
            .setOnlyAlertOnce(true)
            .setProgress(100, currentProgress, false)
            .setAutoCancel(false) // Prevent auto-dismissal of notification until you set the end event

        notificationManager.notify(keyMap[PROGRESS_LIVE_NOTIFICATION]!!, builder.build())
        logger.info("Updated progress notification with progress: $currentProgress")
    }
设计考虑事项:
  • 小图标和主题色
  • 大图标
  • 大图片
  • 操作按钮
有关高级设计选项,请参阅 Android 自定义通知布局

4. 提取实时通知载荷

实时通知使用 additional_data 字段传递结构化内容。
NotificationServiceExtention.kt
val additionalData = event.notification.additionalData
val liveNotificationPayload = additionalData?.optJSONObject("live_notification")

实时通知架构

属性必需描述
key用于加载正确的通知 UI。
event在实时通知上执行的操作。
event_attributes静态数据用于初始化实时通知;定义通知所需数据的自定义架构。
event_updates实时通知的动态内容。必须符合应用实时通知中定义的 ContentState 接口。
Example Live Notification Payload
  {
      "key": "celtics-vs-lakers",
      "event": "start",
      "event_attributes": {
          "homeTeam": "Celtics",
          "awayTeam": "Lakers",
          "game": "Finals Game 1"
      },
      "event_updates": {
          "quarter": 1,
          "homeScore": 0,
          "awayScore": 0,
      }
  }

5. 处理实时通知事件

每个实时通知都必须响应以下事件:
事件描述必需字段
start使用静态和动态数据开始实时通知。event_attributes, event_updates
update使用新动态数据更新实时通知。event_updates
end结束并移除实时通知。
NotificationServiceExtention.kt
val liveNotificationEvent = liveNotificationPayload.optString("event", "")

启动实时通知

当您准备启动实时通知时:
  • 设置 event_attributes 来初始化实时通知的静态数据。此数据在实时通知的生命周期内不会更改。
  • 设置 event_updates 数据来初始化实时通知的动态数据。这是在实时通知生命周期内可以且将会更改的数据。
  • 使用 collapse_id 确保每次更新都覆盖前一次。此 ID 应该对实时通知唯一,以确保后续更新反映在同一个通知中。
curl
  curl -X "POST" "https://api.onesignal.com/notifications" \
       -H 'Authorization: key YOUR_REST_API_KEY' \
       -H 'Content-Type: application/json; charset=utf-8' \
       -d $'{
    "app_id": "YOUR_APP_ID",
    "isAndroid": true,
    "collapse_id": "THE_UNIQUE_ID_FOR_THIS_LIVE_NOTIFICATION",
    "data": {
      "live_notification": {
        "key": "progress",
        "event": "start",
        "event_attributes": {},
        "event_updates": {
          "current_progress": 0
        }
      }
    },
    "headings": {
      "en": "Start"
    },
    "contents": {
      "en": "Starting Live Notification"
    },
    "include_aliases": {
      "external_id": ["EID1", "EID2"]
    },
    "target_channel": "push"
  }'

更新实时通知

您可以随意多次更新实时通知,只要首先启动它。
  • 设置 event_updates 数据来初始化实时通知的动态数据。这是在实时通知生命周期内可以且将会更改的数据,并告知要用什么更新实时通知的内容。
示例 cURL 请求
curl
  curl -X "POST" "https://api.onesignal.com/notifications" \
       -H 'Authorization: key YOUR_REST_API_KEY' \
       -H 'Content-Type: application/json; charset=utf-8' \
       -d $'{
    "app_id": "YOUR_APP_ID",
    "isAndroid": true,
    "collapse_id": "THE_UNIQUE_ID_FOR_THIS_LIVE_NOTIFICATION",
    "data": {
      "live_notification": {
        "key": "progress",
        "event": "update",
  			"event_attributes": {},
        "event_updates": {
          "current_progress": 80
        }
      }
    },
    "headings": {
      "en": "Update"
    },
    "contents": {
      "en": "Updating Live Notification"
    },
    "include_aliases": {
      "external_id": ["EID1", "EID2"]
    },
    "target_channel": "push"
  }'

结束实时通知

示例 cURL 请求
curl
  curl -X "POST" "https://api.onesignal.com/notifications" \
       -H 'Authorization: key YOUR_REST_API_KEY' \
       -H 'Content-Type: application/json; charset=utf-8' \
       -d $'{
    "app_id": "YOUR_APP_ID",
    "isAndroid": true,
    "collapse_id": "THE_UNIQUE_ID_FOR_THIS_LIVE_NOTIFICATION",
    "data": {
      "live_notification": {
        "key": "progress",
        "event": "dismiss"
      }
    },
    "headings": {
      "en": "Dismissing"
    },
    "contents": {
      "en": "Dismissing Live Notification"
    },
    "include_aliases": {
      "external_id": ["EID1", "EID2"]
    },
    "target_channel": "push"
  }'

您已成功创建了实时通知!相关文档:

I