diff --git a/.DS_Store b/.DS_Store index 46bd73ab5..d9eefd5bf 100644 Binary files a/.DS_Store and b/.DS_Store differ diff --git a/docs/.DS_Store b/docs/.DS_Store index 45cb6ab1b..8652c4988 100644 Binary files a/docs/.DS_Store and b/docs/.DS_Store differ diff --git a/docs/_posts/2019-12-02-Profile.md b/docs/_posts/2019-12-02-Profile.md index 1ca1b8eb8..4cc8fbd71 100644 --- a/docs/_posts/2019-12-02-Profile.md +++ b/docs/_posts/2019-12-02-Profile.md @@ -33,6 +33,7 @@ title: 情景模式(Profile) - [0.4.9. 蓝牙事件](#049-蓝牙事件) - [0.4.10. 系统启动](#0410-系统启动) - [0.4.11. 推送消息](#0411-推送消息) + - [0.4.12. 通知](#0412-通知) - [0.5. Handle](#05-handle) - [0.5.1. killer](#051-killer) - [0.5.2. activity](#052-activity) @@ -343,6 +344,16 @@ Resumed--> Paused(被其他活动覆盖)-->Resumed(如果其他活动销 | fcmPushMessageArrived | Boolean(true/false) | 收到GCM/FCM消息推送 | 无 | | pkgName | String(字符串) | 应用包名 | 无 | +### 0.4.12. 通知 + +| 参数名 | 类型 | 含义 | 示例 | +| --------- | --------------------- | ---------- | ---- | +| notificationAdded | Boolean(true/false) | 新通知到达 | 无 | +| notificationRemoved | Boolean(true/false) | 通知移除 | 无 | +| pkgName | String(字符串) | 通知所属应用包名 | 无 | +| notificationTitle | String(字符串) | 通知标题 | 无 | +| notificationContent | String(字符串) | 通知内容 | 无 | + ## 0.5. Handle