Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
OpenHarmony
Docs
提交
602fbb5b
D
Docs
项目概览
OpenHarmony
/
Docs
1 年多 前同步成功
通知
159
Star
292
Fork
28
代码
文件
提交
分支
Tags
贡献者
分支图
Diff
Issue
0
列表
看板
标记
里程碑
合并请求
0
Wiki
0
Wiki
分析
仓库
DevOps
项目成员
Pages
D
Docs
项目概览
项目概览
详情
发布
仓库
仓库
文件
提交
分支
标签
贡献者
分支图
比较
Issue
0
Issue
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
Pages
分析
分析
仓库分析
DevOps
Wiki
0
Wiki
成员
成员
收起侧边栏
关闭侧边栏
动态
分支图
创建新Issue
提交
Issue看板
提交
602fbb5b
编写于
1月 26, 2022
作者:
R
RayShih
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
modify background-agent-scheduled-reminder
Signed-off-by:
N
RayShih
<
shirui721@huawei.com
>
上级
bd0848e0
变更
7
隐藏空白更改
内联
并排
Showing
7 changed file
with
9 addition
and
9 deletion
+9
-9
zh-cn/application-dev/background-agent-scheduled-reminder/background-agent-scheduled-reminder-guide.md
...led-reminder/background-agent-scheduled-reminder-guide.md
+9
-9
zh-cn/application-dev/background-agent-scheduled-reminder/public_sys-resources/icon-caution.gif
...-scheduled-reminder/public_sys-resources/icon-caution.gif
+0
-0
zh-cn/application-dev/background-agent-scheduled-reminder/public_sys-resources/icon-danger.gif
...t-scheduled-reminder/public_sys-resources/icon-danger.gif
+0
-0
zh-cn/application-dev/background-agent-scheduled-reminder/public_sys-resources/icon-note.gif
...ent-scheduled-reminder/public_sys-resources/icon-note.gif
+0
-0
zh-cn/application-dev/background-agent-scheduled-reminder/public_sys-resources/icon-notice.gif
...t-scheduled-reminder/public_sys-resources/icon-notice.gif
+0
-0
zh-cn/application-dev/background-agent-scheduled-reminder/public_sys-resources/icon-tip.gif
...gent-scheduled-reminder/public_sys-resources/icon-tip.gif
+0
-0
zh-cn/application-dev/background-agent-scheduled-reminder/public_sys-resources/icon-warning.gif
...-scheduled-reminder/public_sys-resources/icon-warning.gif
+0
-0
未找到文件。
zh-cn/application-dev/background-agent-scheduled-reminder/background-agent-scheduled-reminder-guide.md
浏览文件 @
602fbb5b
...
...
@@ -17,8 +17,8 @@ reminderAgent:封装了发布、取消提醒类通知的方法
| function
cancelReminder(reminderId:
number,
callback:
AsyncCallback
<
void
>
):
void;
<br/>
function
cancelReminder(reminderId:
number):
Promise
<
void
>
; | 取消一个指定的提醒类通知。(reminderId从publishReminder的返回值获取) |
| function
getValidReminders(callback:
AsyncCallback
<
Array
<
ReminderRequest
>>
):
void;
<br/>
function
getValidReminders():
Promise
<
Array
<
ReminderRequest
>>
; | 获取当前应用设置的所有有效的提醒。 |
| function
cancelAllReminders(callback:
AsyncCallback
<
void
>
):
void;
<br/>
function
cancelAllReminders():
Promise
<
void
>
; | 取消当前应用设置的所有提醒 |
| function
addNotificationSlot(slot:
NotificationSlot,
callback:
AsyncCallback
<
void
>
):
void;
<br/>
function
addNotificationSlot(slot:
NotificationSlot):
Promise
<
void
>
; | 注册一个提醒类需要使用的
[
ERROR:Invalid link:zh-cn_topic_0000001185364575.xml#xref16794355104117,link:zh-cn_topic_0000001180018813.xml#section1382174172015
](
zh-cn_topic_0000001180018813.xml#section1382174172015
)
|
| function
removeNotificationSlot(slotType:
notification.SlotType,
callback:
AsyncCallback
<
void
>
):
void;
<br/>
function
removeNotificationSlot(slotType:
notification.SlotType):
Promise
<
void
>
; | 删除指定类型的
[
ERROR:Invalid link:zh-cn_topic_0000001185364575.xml#xref1925235384215,link:zh-cn_topic_0000001180018813.xml#section1382174172015
](
zh-cn_topic_0000001180018813.xml#section1382174172015
)
|
| function
addNotificationSlot(slot:
NotificationSlot,
callback:
AsyncCallback
<
void
>
):
void;
<br/>
function
addNotificationSlot(slot:
NotificationSlot):
Promise
<
void
>
; | 注册一个提醒类需要使用的
NotificationSlot
|
| function
removeNotificationSlot(slotType:
notification.SlotType,
callback:
AsyncCallback
<
void
>
):
void;
<br/>
function
removeNotificationSlot(slotType:
notification.SlotType):
Promise
<
void
>
; | 删除指定类型的
NotificationSlot
|
enum ActionButtonType: 在提醒弹出的通知界面上的按钮的类型。
...
...
@@ -45,7 +45,7 @@ interface ActionButton:在提醒弹出的通知界面上的按钮实例
| 参数名 | 类型 | 必填 | 描述 |
| -------- | -------- | -------- | -------- |
| title | string | 是 | 按钮上显示的名称 |
| type |
[
ERROR:Invalid link:zh-cn_topic_0000001185364575.xml#xref1265195613399,link:#table8534712161513
](
#table8534712161513
)
| 是 | 按钮的类型 |
| type |
ActionButtonType
| 是 | 按钮的类型 |
interface WantAgent: 设置点击通知后需要跳转的目标ability信息
...
...
@@ -71,10 +71,10 @@ interface ReminderRequest: 需要发布的提醒实例的信息
| 参数名 | 类型 | 必填 | 描述 |
| -------- | -------- | -------- | -------- |
| reminderType |
[
ERROR:Invalid link:zh-cn_topic_0000001185364575.xml#xref512611316417,link:#table486010552014
](
#table486010552014
)
| 是 | 提醒的类型 |
| actionButton |
[
[ERROR:Invalid link:zh-cn_topic_0000001185364575.xml#xref8263115334317,link:#table880311117225
](
#table880311117225
)
?,
[ERROR:Invalid
link:zh-cn_topic_0000001185364575.xml#xref2069311554413,link:#table880311117225](#table880311117225)
?] | 否 | 弹出的提醒通知栏中显示的按钮 |
| wantAgent |
[
ERROR:Invalid link:zh-cn_topic_0000001185364575.xml#xref1577918262463,link:#table9490856350
](
#table9490856350
)
| 否 | 点击通知后需要跳转的目标ability信息 |
| maxScreenWantAgent |
[
ERROR:Invalid link:zh-cn_topic_0000001185364575.xml#xref1069043844613,link:#table191319843714
](
#table191319843714
)
| 否 | 提醒到达时跳转的目标包。如果设备正在使用中,则弹出一个通知框 |
| reminderType |
ReminderType
| 是 | 提醒的类型 |
| actionButton | [
ActionButton?,ActionButton
?] | 否 | 弹出的提醒通知栏中显示的按钮 |
| wantAgent |
WantAgent
| 否 | 点击通知后需要跳转的目标ability信息 |
| maxScreenWantAgent |
MaxScreenWantAgent
| 否 | 提醒到达时跳转的目标包。如果设备正在使用中,则弹出一个通知框 |
| ringDuration | number | 否 | 响铃时长 |
| snoozeTimes | number | 否 | 延迟提醒次数 |
| timeInterval | number | 否 | 延迟提醒间隔 |
...
...
@@ -83,7 +83,7 @@ interface ReminderRequest: 需要发布的提醒实例的信息
| expiredContent | string | 否 | 提醒“过期”时显示的扩展内容 |
| snoozeContent | string | 否 | 提醒“再响”时显示的扩展内容 |
| notificationId | number | 否 | 提醒使用的notificationRequest的id,参见NotificationRequest.setNotificationId(int
id) |
| slotType |
[
ERROR:Invalid link:zh-cn_topic_0000001185364575.xml#xref1837619084820,link:zh-cn_topic_0000001180018813.xml#section072355105110
](
zh-cn_topic_0000001180018813.xml#section072355105110
)
| 否 | 提醒使用的slot类型 |
| slotType |
SlotType
| 否 | 提醒使用的slot类型 |
interface ReminderRequestCalendar extends ReminderRequest: 日历类提醒实例。
...
...
@@ -93,7 +93,7 @@ interface ReminderRequestCalendar extends ReminderRequest: 日历类提醒实例
| 参数名 | 类型 | 必填 | 描述 |
| -------- | -------- | -------- | -------- |
| dateTime |
[
ERROR:Invalid link:zh-cn_topic_0000001185364575.xml#xref97387065711,link:#table16133167515
](
#table16133167515
)
| 是 | 设置目标时间 |
| dateTime |
LocalDataTime
| 是 | 设置目标时间 |
| repeatMonths | Array
<
number
>
| 否 | 设置重复提醒的月份 |
| repeatDays | Array
<
number
>
| 否 | 设置重复提醒的日期 |
...
...
zh-cn/application-dev/background-agent-scheduled-reminder/public_sys-resources/icon-caution.gif
0 → 100644
浏览文件 @
602fbb5b
580 字节
zh-cn/application-dev/background-agent-scheduled-reminder/public_sys-resources/icon-danger.gif
0 → 100644
浏览文件 @
602fbb5b
580 字节
zh-cn/application-dev/background-agent-scheduled-reminder/public_sys-resources/icon-note.gif
0 → 100644
浏览文件 @
602fbb5b
394 字节
zh-cn/application-dev/background-agent-scheduled-reminder/public_sys-resources/icon-notice.gif
0 → 100644
浏览文件 @
602fbb5b
406 字节
zh-cn/application-dev/background-agent-scheduled-reminder/public_sys-resources/icon-tip.gif
0 → 100644
浏览文件 @
602fbb5b
253 字节
zh-cn/application-dev/background-agent-scheduled-reminder/public_sys-resources/icon-warning.gif
0 → 100644
浏览文件 @
602fbb5b
580 字节
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录