鸿蒙OS开发文档 第17页

鸿蒙OS NotificationRequest.NotificationConversationalContent

NotificationRequest.NotificationConversationalContent java.lang.Object |—ohos.event.notification.NotificationRequest.NotificationConversationalContent public static final class NotificationRequest.NotificationConversationalContent extends Object implements Sequenceable 构造一个类似对话的通知,其中包括多个用户之间的消息通信。 构造类会话通知时,需要调用 NotificationRequest#setContent(NotificationContent) 设置对应的通知内容类型。 您可以调用 setConversationTitle(java.lang.String) 来设置对话的标题,并调用 addConversationalMessage(ohos.event.notification.NotificationRequest.NotificationConversationalContent.ConversationalMessage) 来添加包含在对话中的消息。 使用这两种方法设置的标题和消息会影响分别调用 setTitle(java.lang.String) 和 setText(java.lang.String) 设置的标题和文本的显示效果。 Since: 3 嵌套类摘要 修饰符和类型 类 描述 static class NotificationRequest.NotificationConversationalContent.ConversationalMessage 提供用于定义在使用 NotificationConversationalContent 创建的通知中使用的会话消息的方法。 从接口 ohos.utils.Sequenceable 继承的嵌套类/接口 Sequenceable.ProducerT 构造函数摘要 构造函数 描述 NotificationConversationalContent(MessageUser user) 用于创建具有指定 MessageUser 的 NotificationConversationalContent 实例的构造函数。 方法总结 修饰符和类型 方法 描述 NotificationRequest.NotificationConversationalContent addConversationalMessage(String text, long timestamp, MessageUser sender) 根据指定的消息内容、时间戳和 MessageUser 向此类似对话的通知添加消息。 NotificationRequest.NotificationConversationalContent addConversationalMessage(NotificationRequest.NotificationConversationalContent.ConversationalMessage message) 将指定消息添加到此类似对话的通知中。 String getAdditionalText() 获取已通过调用 setAdditionalText(java.lang.String) 为这个类似对话的通知设置的附加文本。 ListNotificationRequest.NotificationConversationalContent.ConversationalMessage getAllConversationalMessages() 获取包含在此类似对话的通知中的所有消息。 String getConversationTitle() 获取要为对话显示的标题。 MessageUser getMessageUser() 获取用户在此类似对话的通知中发送的任何消息要显示的消息发件人。 String getText() 获取该类会话通知调用 setText(java.lang.String) 设置的通知内容。 String getTitle() 获取通过调用 setTitle(java.lang.String) 为这个类似对话的通知设置的标题。 boolean isConversationGroup() 检查此通知是否代表群组对话。 boolean marshalling(Parcel out) 将此通知对话内容对象编组到包裹中。 NotificationRequest.NotificationConversationalContent setAdditionalText(String additionalText) 设置要包含在此类似对话的通知中的附加文本。 NotificationRequest.NotificationConversationalContent setConversationGroup(boolean conversationGroup) 设置此通知是否代表群组对话。 NotificationRequest.NotificationConversationalContent setConversationTitle(String conversationTitle) 设置要为对话显示的标题。 NotificationRequest.NotificationConversationalContent setText(String text) 设置要包含在此类似对话的通知中的文本。 NotificationRequest.NotificationConversationalContent setTitle(String title) 设置此对话式通知的标题。 String toString() 返回对象的字符串表示形式。 boolean unmarshalling(Parcel in) 从 Parcel 中解组此 NotificationConversationalContent 对象。 从类 java.lang.Object 继承的方法 clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait 从接口 ohos.utils.Sequenceable 继承的方法 hasFileDescriptor 构造函数详细信息 NotificationConversationalContent public NotificationConversationalContent(MessageUser user) throws IllegalArgumentException 用于创建具有指定 MessageUser 的 NotificationConversationalContent 实例的构造函数。 参数:...

鸿蒙OS NotificationRequest.NotificationContent

NotificationRequest.NotificationContent java.lang.Object |—ohos.event.notification.NotificationRequest.NotificationContent public static final class NotificationRequest.NotificationContent extends Object implements Sequenceable 设置要传递给 NotificationRequest#setContent(NotificationRequest.NotificationContent) 方法的通知内容。 内容类型可以是 NotificationRequest.NotificationNormalContent、NotificationRequest.NotificationLongTextContent 或 NotificationRequest.NotificationPictureContent。 您可以使用此类的构造函数来指定要使用的类型。 Since: 1 嵌套类摘要 从接口 ohos.utils.Sequenceable 继承的嵌套类/接口 Sequenceable.ProducerT 字段摘要 修饰符和类型 字段 描述 static int NOTIFICATION_CONTENT_BASIC_TEXT 表示基本通知。 static int NOTIFICATION_CONTENT_CONVERSATION 表示包含多个用户之间对话的通知。 static int NOTIFICATION_CONTENT_LONG_TEXT 表示包含长文本的通知。 static int NOTIFICATION_CONTENT_MEDIA 表示包含媒体播放会话的通知。 static int NOTIFICATION_CONTENT_MULTILINE 表示包含多行独立文本的通知。 static int NOTIFICATION_CONTENT_PICTURE 表示包含图片的通知。 static Sequenceable.ProducerNotificationRequest.NotificationContent PRODUCER 从 Parcel 创建 NotificationContent 实例。 构造函数摘要 构造函数 描述 NotificationContent(NotificationRequest.NotificationConversationalContent conversationContent) 用于创建 NotificationRequest.NotificationConversationalContent 实例(通过调用 getNotificationContent() 获得)并将内容类型设置为 NOTIFICATION_CONTENT_CONVERSATION(通过调用 getContentType() 获得)的构造函数。 NotificationContent(NotificationRequest.NotificationLongTextContent longTextContent) 用于创建 NotificationRequest.NotificationLongTextContent 实例(通过调用 getNotificationContent() 获得)并将内容类型设置为 NOTIFICATION_CONTENT_LONG_TEXT(通过调用 getContentType() 获得)的构造函数。 NotificationContent(NotificationRequest.NotificationMediaContent mediaContent) 用于创建 NotificationRequest.NotificationMediaContent 实例(通过调用 getNotificationContent() 获得)并将内容类型设置为 NOTIFICATION_CONTENT_MEDIA(通过调用 getContentType() 获得)的构造函数。 NotificationContent(NotificationRequest.NotificationMultiLineContent multiLineContent) 用于创建 NotificationRequest.NotificationMultiLineContent 实例(通过调用 getNotificationContent() 获得)并将内容类型设置为 NOTIFICATION_CONTENT_CONVERSATION(通过调用 getContentType() 获得)的构造函数。 NotificationContent(NotificationRequest.NotificationNormalContent normalContent) 用于创建 NotificationRequest.NotificationNormalContent 实例(通过调用 getNotificationContent() 获得)并将内容类型设置为 NOTIFICATION_CONTENT_BASIC_TEXT(通过调用 getContentType() 获得)的构造函数。 NotificationContent(NotificationRequest.NotificationPictureContent pictureContent) 用于创建 NotificationRequest.NotificationPictureContent 实例(通过调用 getNotificationContent() 获得)并将内容类型设置为 NOTIFICATION_CONTENT_PICTURE(通过调用 getContentType() 获得)的构造函数。 方法总结 修饰符和类型 方法 描述 int getContentType() 获取通知内容的类型值。 Object getNotificationContent() 获取与当前通知内容匹配的对象。 boolean marshalling(Parcel out) 将 NotificationContent 对象编组到 Parcel 中。 String toString() 返回对象的字符串表示形式。 boolean unmarshalling(Parcel in) 从 Parcel 中解组 NotificationContent 对象。 从类 java.lang.Object 继承的方法 clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait 从接口 ohos.utils.Sequenceable 继承的方法 hasFileDescriptor 字段详细信息 NOTIFICATION_CONTENT_BASIC_TEXT public static final int NOTIFICATION_CONTENT_BASIC_TEXT 表示基本通知。 此类通知是使用 NotificationRequest.NotificationNormalContent 创建的。 NOTIFICATION_CONTENT_CONVERSATION public static final int NOTIFICATION_CONTENT_CONVERSATION 表示包含多个用户之间对话的通知。 此类通知是使用 NotificationRequest.NotificationConversationalContent 创建的。 NOTIFICATION_CONTENT_LONG_TEXT public static final int...

鸿蒙OS NotificationRequest

NotificationRequest java.lang.Object |—ohos.event.notification.NotificationRequest public final class NotificationRequest extends Object implements Sequenceable 携带通知。 在通知发布方面,需要分别调用 setContent(ohos.event.notification.NotificationRequest.NotificationContent) 方法指定通知内容,调用 setDeliveryTime(long) 方法设置通知的发送时间。 NotificationRequest 在 NotificationHelper#publishNotification(NotificationRequest) 方法中用作输入参数以发布通知。 在通知订阅方面,可以继承 NotificationSubscriber 类,重写回调方法 NotificationSubscriber#onConsumed(NotificationRequest) 和 NotificationSubscriber#onCanceled(NotificationRequest)。 接收或删除的通知可以存储在 NotificationRequest 对象中。 Since: 1 嵌套类摘要 修饰符和类型 类 描述 static class NotificationRequest.NotificationContent 设置要传递给 NotificationRequest#setContent(NotificationRequest.NotificationContent) 方法的通知内容。 static class NotificationRequest.NotificationConversationalContent 构造一个类似对话的通知,其中包括多个用户之间的消息通信。 static class NotificationRequest.NotificationLongTextContent 构造包含长文本的通知。 static class NotificationRequest.NotificationMediaContent 构造一个可以与关联的音频会话交互的媒体播放通知。 static class NotificationRequest.NotificationMultiLineContent 构造一个包含多行文本的通知。 static class NotificationRequest.NotificationNormalContent 构造基本通知。 static class NotificationRequest.NotificationPictureContent 构造包含图片附件的通知。 从接口 ohos.utils.Sequenceable 继承的嵌套类/接口 Sequenceable.ProducerT 字段摘要 修饰符和类型 字段 描述 static int BADGE_STYLE_BIG 表示此通知的标记显示为大图标。 static int BADGE_STYLE_LITTLE 表示此通知的标记显示为一个小图标。 static int BADGE_STYLE_NONE 表示此通知的标记仅显示数字。 static String CLASSIFICATION_ALARM 指示警报或定时器的通知分类。 static String CLASSIFICATION_CALL 指示传入呼叫或类似同步通信请求的通知分类。 static String CLASSIFICATION_EMAIL 指示电子邮件通知的分类。 static String CLASSIFICATION_ERROR 指示在后台操作或身份验证过程中发生的错误通知的分类。 static String CLASSIFICATION_EVENT 指示日历事件的通知分类。 static String CLASSIFICATION_MESSAGE 指示短消息或即时消息的通知分类。 static String CLASSIFICATION_NAVIGATION 表示地图导航通知的分类。 static String CLASSIFICATION_PROGRESS 表示长时间在后台运行的进程的通知分类。 static String CLASSIFICATION_PROMO 表示广告或促销信息通知的分类。 static String CLASSIFICATION_RECOMMENDATION 指示特定交易的具体及时建议的通知分类。 static String CLASSIFICATION_REMINDER 指示用户先前设置的提醒的通知分类。 static String CLASSIFICATION_SERVICE 指示正在进行的后台服务的通知分类。 static String CLASSIFICATION_SOCIAL 指示社交网络或共享更新通知的分类。 static String CLASSIFICATION_STATUS 指示有关设备和上下文状态的持续信息的通知分类。 static String CLASSIFICATION_SYSTEM 指示系统或设备状态更新通知的分类。 static String...

鸿蒙OS NotificationHelper

NotificationHelper java.lang.Object |—ohos.event.notification.NotificationHelper public class NotificationHelper extends Object 管理通知。 该类提供的方法都是静态的,无需创建该类的对象即可调用。 通常,只有系统应用程序才具有通知订阅和取消订阅的权限。 您可以指定要发布的通知的内容,该内容由 NotificationRequest 携带。 通知ID在应用程序中是唯一的,在使用NotificationRequest承载通知内容时必须指定。 如果具有此 ID 的通知已发布,并且您需要使用此 ID 发布另一个通知,则将更新原始通知。 此外,通知 ID 可用于通过调用 cancelNotification(int) 方法取消通知。 Since: 1 方法总结 修饰符和类型 方法 描述 static void addNotificationSlot(NotificationSlot slot) 创建一个通知槽。 static void addNotificationSlotGroup(NotificationSlotGroup slotGroup) 创建一个通知槽组,通过调用 NotificationSlot#setSlotGroup(String) 可以将 NotificationSlot 对象绑定到该组。 static void addNotificationSlotGroups(ListNotificationSlotGroup slotGroups) 创建多个通知槽组。 static void addNotificationSlots(ListNotificationSlot slots) 创建多个通知槽。 static boolean areNotificationsSuspended() 检查此应用程序是否处于挂起状态。 static void cancelAllNotifications() 取消所有已发布的通知。 static void cancelNotification(int notificationId) 取消已发布的通知。 static void cancelNotification(String label, int notificationId) 取消与指定标签和 notificationId 匹配的已发布通知。 static boolean canPublishNotificationAsBundle(String representativeBundle) 通过以给定代表包指示的另一个应用程序的名称调用 publishNotificationAsBundle(java.lang.String,ohos.event.notification.NotificationRequest) 来检查您的应用程序是否有权发布通知。 static int getActiveNotificationNums() 获取系统中当前应用的活动通知数。 static SetNotificationRequest getActiveNotifications() 获取系统中当前应用程序的活动通知。 static int getBundleImportance() 获取此应用程序的重要性级别。 static NotificationSortingMap getCurrentAppSorting() 获取当前应用的通知排序 map。 static String getNotificationAgent() 获取可以以您的应用程序名称发布通知的应用程序包的名称。 static NotificationSlot getNotificationSlot(String slotId) 查询已创建的通知槽。 static NotificationSlotGroup getNotificationSlotGroup(String slotGroupId) 获取创建的通知槽组。 static ListNotificationSlotGroup getNotificationSlotGroups() 获取创建的通知槽组列表。 static ListNotificationSlot getNotificationSlots() 获取该应用的所有通知槽。 static boolean hasNotificationPolicyAccessPermission() 检查此应用程序是否有权修改请勿打扰 (DND) 通知策略。 static boolean isAllowedNotify() 检查此应用程序是否有权发布通知。 static void publishNotification(String label, NotificationRequest request) 发布带有指定标签的通知。 static void publishNotification(NotificationRequest request) 发布通知。 static void publishNotification(NotificationRequest request, String deviceId) 在指定的远程设备上发布通知。 static void publishNotificationAsBundle(String representativeBundle, NotificationRequest request) 以指定应用程序包的名称发布通知。 static void removeNotificationSlot(String slotId) 根据槽位 ID 删除创建的通知槽位。 static void removeNotificationSlotGroup(String slotGroupId) 根据槽组 ID 删除创建的通知槽组。 static void setNotificationAgent(String agent) 允许另一个应用程序充当代理以您的应用程序包的名称发布通知。 static void setNotificationBadgeNum() 将当前应用程序的活动通知数量设置为要在通知徽章上显示的数量。 static void setNotificationBadgeNum(int num) 设置要在应用程序的通知徽章上显示的数字。 从类 java.lang.Object...

鸿蒙OS NotificationConstant

NotificationConstant java.lang.Object |—ohos.event.notification.NotificationConstant public final class NotificationConstant extends Object 提供静态常量来指示通知删除原因。 常量是调用 NotificationSubscriber#onCanceled(NotificationRequest, NotificationSortingMap, int) 时使用的 int 参数。 Since: 2 嵌套类摘要 修饰符和类型 类 描述 static class NotificationConstant.DisturbMode 枚举免打扰模式的类型。 static class NotificationConstant.InputEditType 枚举在通知中提供给用户的选项的编辑类型。 static class NotificationConstant.InputsSource 枚举用户输入源。 static class NotificationConstant.SemanticActionButton 枚举触发 NotificationActionButton 时关联的 IntentAgent 将采取的操作。 字段摘要 修饰符和类型 字段 描述 static int APP_CANCEL_ALL_REASON_DELETE 表示由于应用程序取消了所有通知而删除了通知。 static int APP_CANCEL_REASON_DELETE 表示由于应用程序取消通知而删除通知。 static int APP_CANCEL_REASON_OTHER 表示通知因其他原因被删除。 static int CANCEL_ALL_REASON_DELETE 表示由于用户清除所有通知而删除通知。 static int CANCEL_REASON_DELETE 表示通知因用户清除而被删除。 static int CLICK_REASON_DELETE 表示通知因为被点击而被删除。 static int ERROR_REASON_DELETE 指示由于 UI 错误而删除通知。 static String EXTRA_INPUTS_SOURCE 键表示输入源。 static int PACKAGE_BANNED_REASON_DELETE 表示由于应用程序被禁止发送通知而删除通知。 static int PACKAGE_CHANGED_REASON_DELETE 表示由于对应用程序进行了更改而删除了通知。 static int USER_STOPPED_REASON_DELETE 指示由于应用程序上下文已停止而删除通知。 方法总结 从类 java.lang.Object 继承的方法 clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait 字段详细信息 APP_CANCEL_ALL_REASON_DELETE public static final int APP_CANCEL_ALL_REASON_DELETE 表示由于应用程序取消了所有通知而删除了通知。 APP_CANCEL_REASON_DELETE public static final int APP_CANCEL_REASON_DELETE 表示由于应用程序取消通知而删除通知。 APP_CANCEL_REASON_OTHER public static final int APP_CANCEL_REASON_OTHER 表示通知因其他原因被删除。 CANCEL_ALL_REASON_DELETE public static final int CANCEL_ALL_REASON_DELETE 表示由于用户清除所有通知而删除通知。 CANCEL_REASON_DELETE public static final int CANCEL_REASON_DELETE 表示通知因用户清除而被删除。 CLICK_REASON_DELETE public static final int CLICK_REASON_DELETE 表示通知因为被点击而被删除。...

鸿蒙OS NotificationActionButton.Builder

NotificationActionButton.Builder java.lang.Object |—ohos.event.notification.NotificationActionButton.Builder public static final class NotificationActionButton.Builder extends Object NotificationActionButton 对象的生成器类。 Since: 3 构造函数摘要 构造函数 描述 Builder(NotificationActionButton actionButton) 用于通过从现有 NotificationActionButton 对象复制参数来创建 Builder 实例的构造函数。 Builder(PixelMap icon, String title, IntentAgent intentAgent) 用于创建具有指定图标、标题和 IntentAgent 的 Builder 实例的构造函数,用于创建 NotificationActionButton 对象。 方法总结 修饰符和类型 方法 描述 NotificationActionButton.Builder addAdditionalData(PacMap pacMap) 将附加数据添加到此 Builder。 NotificationActionButton.Builder addNotificationUserInput(NotificationUserInput userInput) 添加用于收集用户输入的 NotificationUserInput 对象。 NotificationActionButton build() 使用所有设置创建一个新的 NotificationActionButton 对象。 NotificationActionButton.Builder setAutoCreatedReplies(boolean autoCreatedReplies) 设置是否允许平台自动生成可能的回复并将其添加到 NotificationUserInput#getOptions()。 NotificationActionButton.Builder setContextDependent(boolean isContextual) 设置此 NotificationActionButton 是否为上下文动作,即此 NotificationActionButton 是否依赖于通知消息体。 NotificationActionButton.Builder setSemanticActionButton(NotificationConstant.SemanticActionButton semanticActionButton) 为此 NotificationActionButton 设置语义操作。 从类 java.lang.Object 继承的方法 clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait 构造函数详细信息 Builder public Builder(PixelMap icon, String title, IntentAgent intentAgent) 用于创建具有指定图标、标题和 IntentAgent 的 Builder 实例的构造函数,用于创建 NotificationActionButton 对象。 参数: 参数名称 参数描述 icon 指示表示此 NotificationActionButton 的图标。 title 指示此 NotificationActionButton 的标题。 intentAgent 指示触发此 NotificationActionButton 时要触发的 IntentAgent。 Since: 3 Builder public Builder(NotificationActionButton actionButton) 用于通过从现有 NotificationActionButton 对象复制参数来创建 Builder 实例的构造函数。 参数: 参数名称 参数描述 actionButton 指示现有的 NotificationActionButton 对象。 Since: 3 方法详情 addNotificationUserInput public NotificationActionButton.Builder addNotificationUserInput(NotificationUserInput userInput) 添加用于收集用户输入的 NotificationUserInput 对象。 参数: 参数名称 参数描述 userInput 指示要添加的 NotificationUserInput 对象。 返回: 返回此 Builder 对象。 Since: 3 setContextDependent public NotificationActionButton.Builder setContextDependent(boolean isContextual) 设置此 NotificationActionButton 是否为上下文动作,即此 NotificationActionButton 是否依赖于通知消息体。...

鸿蒙OS NotificationActionButton

NotificationActionButton java.lang.Object |—ohos.event.notification.NotificationActionButton public class NotificationActionButton extends Object implements Sequenceable 封装要在通知中显示的操作按钮。 您可以调用 NotificationRequest#addActionButton 将操作按钮添加到通知。 NotificationActionButton 对象必须包含一个图标、一个标题和一个关联的 IntentAgent,定义了单击操作按钮时要触发的操作。 Since: 3 嵌套类摘要 修饰符和类型 类 描述 static class NotificationActionButton.Builder NotificationActionButton 对象的生成器类。 从接口 ohos.utils.Sequenceable 继承的嵌套类/接口 Sequenceable.ProducerT 字段摘要 修饰符和类型 字段 描述 static Sequenceable.ProducerNotificationActionButton PRODUCER 从 Parcel 创建 NotificationActionButton 实例。 方法总结 修饰符和类型 方法 描述 PacMap getAdditionalData() 获取包含在此 NotificationActionButton 中的附加数据。 PixelMap getIcon() 获取此 NotificationActionButton 的图标。 IntentAgent getIntentAgent() 获取此 NotificationActionButton 的 IntentAgent。 ListNotificationUserInput getMimeTypeOnlyUserInputs() 在发送此 NotificationActionButton 时,获取仅允许特定 MIME 类型的值的 NotificationUserInput 对象。 int getSemanticActionButton() 获取此 NotificationActionButton 的语义操作。 String getTitle() 获取此 NotificationActionButton 的标题。 ListNotificationUserInput getUserInputs() 获取发送此 NotificationActionButton 时向用户收集的 NotificationUserInput 对象。 boolean isAutoCreatedReplies() 检查平台是否可以自动为此 NotificationActionButton 生成可能的回复。 boolean isContextDependent() 检查此 NotificationActionButton 是否为上下文操作,即此 NotificationActionButton 是否依赖于通知消息体。 boolean marshalling(Parcel out) 将 NotificationActionButton 对象编组到 Parcel 中。 String toString() 返回对象的字符串表示形式。 boolean unmarshalling(Parcel in) 从 Parcel 中解组 NotificationActionButton 对象。 从类 java.lang.Object 继承的方法 clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait 从接口 ohos.utils.Sequenceable 继承的方法 hasFileDescriptor 字段详细信息 PRODUCER public static final Sequenceable.ProducerNotificationActionButton PRODUCER 从 Parcel 创建 NotificationActionButton 实例。 Since: 4 方法详情 getIcon public PixelMap getIcon() 获取此 NotificationActionButton 的图标。 返回: 返回此 NotificationActionButton 的图标。 Since: 3 getAdditionalData public PacMap getAdditionalData() 获取包含在此 NotificationActionButton 中的附加数据。...

鸿蒙OS MessageUser

MessageUser java.lang.Object |—ohos.event.notification.MessageUser public final class MessageUser extends Object implements Sequenceable 表示可由 NotificationRequest、NotificationRequest.NotificationConversationalContent 和 NotificationRequest.NotificationConversationalContent.ConversationalMessage 使用的消息发送方。 Since: 3 嵌套类摘要 从接口 ohos.utils.Sequenceable 继承的嵌套类/接口 Sequenceable.ProducerT 字段摘要 修饰符和类型 字段 描述 static Sequenceable.ProducerMessageUser PRODUCER 从 Parcel 创建 MessageUser 实例。 构造函数摘要 构造函数 描述 MessageUser() 方法总结 修饰符和类型 方法 描述 String getKey() 获取此 MessageUser 的密钥。 String getName() 获取此 MessageUser 的名称。 PixelMap getPixelMap() 获取此 MessageUser 的像素图。 String getUri() 获取此 MessageUser 的 URI。 boolean isMachine() 检查此 MessageUser 是否为机器。 boolean isUserImportant() 检查此 MessageUser 是否重要。 boolean marshalling(Parcel out) 将此 Message User 对象编组到 Parcel 中。 MessageUser setKey(String key) 设置用于唯一标识此 MessageUser 的密钥。 MessageUser setMachine(boolean machine) 设置此 MessageUser 是否为机器。 MessageUser setName(String name) 设置此 MessageUser 的名称。 MessageUser setPixelMap(PixelMap pixelMap) 设置此 MessageUser 的像素图。 MessageUser setUri(String uri) 设置此 MessageUser 的 URI。 MessageUser setUserAsImportant(boolean important) 设置此 MessageUser 是否重要。 String toString() 返回对象的字符串表示形式。 boolean unmarshalling(Parcel in) 从 Parcel 中解组此 MessageUser 对象。 从类 java.lang.Object 继承的方法 clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait 从接口 ohos.utils.Sequenceable 继承的方法 hasFileDescriptor 字段详细信息 PRODUCER public static final Sequenceable.ProducerMessageUser PRODUCER 从 Parcel 创建 MessageUser 实例。 Since: 4 构造函数详细信息 MessageUser public MessageUser() 方法详情 getName public String getName() 获取此 MessageUser 的名称。 返回: 返回此 MessageUser...

鸿蒙OS INotificationSubscriber

INotificationSubscriber @Deprecatedpublic interface INotificationSubscriberextends IRemoteBroker 已弃用。 此更改从 API 版本 5 开始生效。此 API 仅在高级通知系统中使用,不对外部系统开放。 Since: 1 字段摘要 修饰符和类型 字段 描述 static String DESCRIPTOR 已弃用。 static int NOTIFICATION_CONNECTED 已弃用。 static int NOTIFICATION_DISCONNECT 已弃用。 static int NOTIFICATION_DISTURB_MODE_CHANGE 已弃用。 static int NOTIFICATION_POSTED 已弃用。 static int NOTIFICATION_REMOVED 已弃用。 static int NOTIFICATION_UPDATE 已弃用。 方法总结 修饰符和类型 方法 描述 void onDisturbModeChange(int disturbMode) 已弃用。 void onNotificationPosted(NotificationRequest info) 已弃用。 void onNotificationPosted(NotificationRequest info, NotificationSortingMap sortingMap) 已弃用。 void onNotificationRankingUpdate(NotificationSortingMap sortingMap) 已弃用。 void onNotificationRemoved(NotificationRequest info) 已弃用。 void onNotificationRemoved(NotificationRequest info, NotificationSortingMap sortingMap, int deleteReason) 已弃用。 void onSubscribeConnected() 已弃用。 void onSubscribeDisConnected() 已弃用。 从接口 ohos.rpc.IRemoteBroker 继承的方法 asObject 字段详细信息 DESCRIPTOR @Deprecated static final String DESCRIPTOR 已弃用。 唯一标识远程过程调用 (RPC) 对象。 Since: 1 NOTIFICATION_CONNECTED @Deprecated static final int NOTIFICATION_CONNECTED 已弃用。 表示订阅者已连接到 ANS。 此常量用于调用 onSubscribeConnected() 方法。 Since: 1 NOTIFICATION_DISCONNECT @Deprecated static final int NOTIFICATION_DISCONNECT 已弃用。 表示订阅者与 ANS 断开连接。 此常量用于调用 onSubscribeDisConnected() 方法。 Since: 1 NOTIFICATION_DISTURB_MODE_CHANGE @Deprecated static final int NOTIFICATION_DISTURB_MODE_CHANGE...

鸿蒙OS IAdvancedNotificationManager

IAdvancedNotificationManager @Deprecated public interface IAdvancedNotificationManager extends IRemoteBroker 已弃用。 此更改从 API 版本 5 开始生效。此 API 仅在高级通知系统中使用,不对外部系统开放。 Since: 1 字段摘要 修饰符和类型 字段 描述 static int ANS_ABORT_ALL 已弃用。 static int ANS_ABORT_ONE 已弃用。 static int ANS_ADD_SLOTS 已弃用。 static int ANS_CAN_PUBLISH_NOTIFICATION_AS_BUNDLE 已弃用。 static int ANS_CREATE_SLOT 已弃用。 static int ANS_CREATE_SLOTGROUP 已弃用。 static int ANS_CREATE_SLOTGROUPS 已弃用。 static int ANS_DELETE_SLOT 已弃用。 static int ANS_DELETE_SLOTGROUP 已弃用。 static int ANS_GET_ACTIVE_NOTIFICATION 已弃用。 static int ANS_GET_ACTIVE_NOTIFICATION_NUM 已弃用。 static int ANS_GET_NOTIFICATION_AGENT 已弃用。 static int ANS_GET_SLOT 已弃用。 static int ANS_GET_SLOTGROUP 已弃用。 static int ANS_GET_SLOTGROUPS 已弃用。 static int ANS_GET_SLOTS 已弃用。 static int ANS_GET_SORTING 已弃用。 static int ANS_INQUIRY_BUNDLE_IMPORTANCE 已弃用。 static int ANS_INQUIRY_IS_SUSPENDED 已弃用。 static int ANS_NOTIFICATION_POLICY_ACCESS_PERMISSION 已弃用。 static int ANS_NOTIFICATIONS_ALLOWED 已弃用。 static int ANS_PUBLISH_NOTIFICATION_AS_BUNDLE 已弃用。 static int ANS_SCHEDULE_NOTIFICATION 已弃用。 static int ANS_SET_NOTIFICATION_AGENT 已弃用。 static int ANS_SET_NOTIFICATION_BADGE_NUM1 已弃用。 static int ANS_SET_NOTIFICATION_BADGE_NUM2 已弃用。 static String DESCRIPTOR 已弃用。 方法总结 修饰符和类型 方法 描述 void addNotificationSlot(String bundle, NotificationSlot slot) 已弃用。 void addNotificationSlotGroup(String bundle, NotificationSlotGroup slotGroup) 已弃用。 void addNotificationSlotGroups(String bundle, ListNotificationSlotGroup slotGroups) 已弃用。 void addNotificationSlots(String bundle, ListNotificationSlot slots) 已弃用。 boolean areNotificationsSuspended(String bundle)...