阅读(130)
赞(8)
鸿蒙OS ReminderRequestAlarm
2022-10-10 13:46:59 更新
ReminderRequestAlarm
java.lang.Object
|---ohos.event.notification.ReminderRequest
|---|---ohos.event.notification.ReminderRequestAlarm
public class ReminderRequestAlarm
extends ReminderRequest
用于创建闹钟提醒的 ReminderRequest 子类。
您可以使用该类在特定日期或每周特定日期的指定时间(精确到分钟)发布警报提醒。
Since:
6
嵌套类摘要
从接口 ohos.utils.Sequenceable 继承的嵌套类/接口 |
---|
Sequenceable.ProducerT |
字段摘要
从类 ohos.event.notification.ReminderRequest 继承的字段 |
---|
ACTION_BUTTON_TYPE_CLOSE, ACTION_BUTTON_TYPE_SNOOZE |
构造函数摘要
构造函数 | 描述 |
---|---|
ReminderRequestAlarm(int hour, int minute, int[] daysOfWeek) | 用于创建 ReminderRequestAlarm 实例的构造函数。 |
方法总结
修饰符和类型 | 方法 | 描述 |
---|---|---|
boolean | marshalling(Parcel out) | 将此 Sequenceable 对象编组为 Parcel。 |
boolean | unmarshalling(Parcel in) | 从 Parcel 中解组此 Sequenceable 对象。 |
从类 java.lang.Object 继承的方法 |
---|
clone, finalize, getClass, notify, notifyAll, wait, wait, wait |
从类 ohos.event.notification.ReminderRequest 继承的方法 |
---|
compareTo, equals, getContent, getExpiredContent, getNotificationId, getRingDuration, getSlotId, getSnoozeContent, getSnoozeTimes, getTimeInterval, getTitle, hashCode, setActionButton, setContent, setExpiredContent, setIntentAgent, setMaxScreenIntentAgent, setNotificationId, setRingDuration, setSlotId, setSnoozeContent, setSnoozeTimes, setTimeInterval, setTitle, toString |
从接口 ohos.utils.Sequenceable 继承的方法 |
---|
hasFileDescriptor |
构造函数详细信息
ReminderRequestAlarm
public ReminderRequestAlarm(int hour, int minute, int[] daysOfWeek)
用于创建 ReminderRequestAlarm 实例的构造函数。 警报提醒将在指定时间触发。
确保输入参数满足以下要求。 否则,应用程序可能会因为非法参数异常而崩溃。
- hour 的值必须大于等于 0 小于等于 23。
- minute 的值必须大于等于 0 小于等于 59。
- daysOfWeek 数组的长度不能大于 7。
参数:
参数名称 | 参数描述 |
---|---|
hour | 指示此警报提醒的小时数。 取值范围为 0 到 23。 |
minute | 指示此警报提醒的分钟。 取值范围为 0 到 59。 |
daysOfWeek | 表示一周中的哪几天触发此警报提醒。 例如,值 {1, 3} 表示提醒将在每周一和周三触发。 默认情况下,此提醒不会被延后。 您可以调用 ReminderRequest.setTimeInterval(long) 来设置贪睡间隔。 如果设置了打盹间隔,该提醒会默认打盹3次。 您可以调用 ReminderRequest.setSnoozeTimes(int) 来更改贪睡时间。 |
Since:
6
方法详情
marshalling
public boolean marshalling(Parcel out)
从接口复制的描述:Sequenceable
将此 Sequenceable 对象编组为 Parcel。
指定者:
接口 Sequenceable 中的编组
覆盖:
在类 ReminderRequest 中编组
参数:
参数名称 | 参数描述 |
---|---|
out | 指示将 Sequenceable 对象编组到的 Parcel 对象。 |
返回:
如果编组成功,则返回 true; 否则返回 false。
unmarshalling
public boolean unmarshalling(Parcel in)
从接口复制的描述:Sequenceable
从 Parcel 中解组此 Sequenceable 对象。
指定者:
在接口 Sequenceable 中解组
覆盖:
在 ReminderRequest 类中解组
参数:
参数名称 | 参数描述 |
---|---|
in | 指示已将 Sequenceable 对象编组到的 Parcel 对象。 |
返回:
如果解组成功,则返回 true; 否则返回 false。