当前位置: 首页 > news >正文

摄像头监控视频怎么做直播网站免费网上商城模板

摄像头监控视频怎么做直播网站,免费网上商城模板,淘宝网站经营与建设论文,wordpress加html1、通知概述 1.1、简介 应用可以通过通知接口发送通知消息#xff0c;终端用户可以通过通知栏查看通知内容#xff0c;也可以点击通知来打开应用。 通知使用的的常见场景#xff1a; 显示接收到的短消息、即使消息...显示应用推送消息显示当前正在进行的事件#xff0c…1、通知概述 1.1、简介 应用可以通过通知接口发送通知消息终端用户可以通过通知栏查看通知内容也可以点击通知来打开应用。 通知使用的的常见场景 显示接收到的短消息、即使消息...显示应用推送消息显示当前正在进行的事件如下载等 HarmonyOS通过ANS(Advanced Notification Service,通知系统服务)对通知消息进行管理支持多种通知类型。 1.2、通知的业务流程 业务流程中由通知子系统、通知发送端、通知订阅组件 一条通知从通知发送端产生发送到通知子系统然后再由通知子系统分发给通知订阅端。 1.3、通知消息的表现形式 1.4、通知结构 1、通知小图图标表示通知的功能与类型 2、通知名称应用名称或者功能名称 3、时间发送通知的时间系统默认显示 4、展示图标用来展开被折叠的内容和按钮如果没有折叠的内容和按钮则不显示这个图标 5、内容标题 6、内容详情 2、基础类型通知 基础类型通知主要应用于发送短信息、提示信息、广告推送...它支持普通文本类型、长文本类型、图片类型。 普通文本类型                NOTIFICATION_CONTENT_BASIC_TEXT 长文本类型                    NOTIFICATION_CONTENT_LONG_TEXT 多行文本类型                NOTIFICATION_CONTENT_MULTILINE 图片类型                       NOTIFICATION_CONTENT_PICTURE 2.1、相关接口 接口名描述publish(request:NotificatioinRequest,callback:AsyncCallbackvoid):void发布通知cancel(id:number,label:string,callback:AsyncCallbackvoid):void取消指定的通知通过id来判断是哪个通知cancelAll(callback:AsycCallbackvoid):void取消所有该应用发布的通知 2.2、开发步骤 1、导入模块 import NotificationManager from ohos.notificationManager; 2、构造NotificationRequest对象发布通知 import notificationManager from ohos.notificationManager import Prompt from system.prompt import image from ohos.multimedia.image;Entry Component struct Index {publishNotification() {let notificationRequest: notificationManager.NotificationRequest {id: 0,slotType: notificationManager.SlotType.SERVICE_INFORMATION,content: {contentType: notificationManager.ContentType.NOTIFICATION_CONTENT_BASIC_TEXT,normal:{title: 通知标题,text: 这是一个通知的消息内容,additionalText: 通知附加内容 // 附加内容是对通知内容的补充}}};notificationManager.publish(notificationRequest).then(() {// 发布通知Prompt.showToast({message: 发布通知消息成功,duration: 2000})}).catch((err) {Prompt.showToast({message: 发布通知失败失败代码${err.code},失败原因${err.message},duration: 2000})});}/* 多行文本通知 */publicNotification1(){let notificationRequest:notificationManager.NotificationRequest {id: 1,content: {contentType: notificationManager.ContentType.NOTIFICATION_CONTENT_MULTILINE,multiLine: {title: 通知标题,text: 通知的内容简介,briefText: briefText内容,longTitle: longTitle内容,lines: [第一行内容,第二行内容,第三行内容]}}};notificationManager.publish(notificationRequest).then(() {// 发布通知Prompt.showToast({message: 发布通知消息成功,duration: 2000})}).catch((err) {Prompt.showToast({message: 发布通知失败失败代码${err.code},失败原因${err.message},duration: 2000})});}/* 图片通知 */async publishPictureNotification(){// 把资源图片转为PixelMap对象let resourceManager getContext(this).resourceManager;let imageArray await resourceManager.getMediaContent($r(app.media.image2).id);let imageResource image.createImageSource(imageArray.buffer);let pixelMap await imageResource.createPixelMap();// 描述通知信息let notificationRequest:notificationManager.NotificationRequest {id: 2,content: {contentType: notificationManager.ContentType.NOTIFICATION_CONTENT_PICTURE,picture: {title: 通知消息的标题,text: 展开查看详情通知内容,expandedTitle: 展开时的内容标题,briefText: 这里是通知的概要内容对通知的总结,picture: pixelMap}}};notificationManager.publish(notificationRequest).then(() {// 发布通知消息Prompt.showToast({message: 发布通知消息成功,duration: 2000})}).catch((err) {Prompt.showToast({message: 发布通知失败失败代码${err.code},失败原因${err.message},duration: 2000})});}build() {Row() {Column() {Button(发送通知).width(50%).margin({bottom:10}).onClick(() {this.publishNotification()})Button(发送多行文本通知).width(50%).margin({bottom:10}).onClick(() {this.publicNotification1()})Button(发送图片通知).width(50%).margin({bottom:10}).onClick(() {this.publishPictureNotification()})}.width(100%)}.height(100%)} } 3、进度条类型通知 进度条通知也是常见的通知类型主要应用于文件下载、事务处理进度的显示。 HarmonyOS提供了进度条模板发布通知应用设置好进度条模板的属性值通过通知子系统发送到通知栏显示。 当前系统模板仅支持进度条模板通知模板NotificationTemplate中的data参数为用户自定义数据用来显示模块相关的数据。 3.1、相关接口 isSupportTemplate(templateName: string,callback:AsyncCallbackboolean) : void        查询模板是否存在 3.2、开发步骤 1、导入模块 import NotificationManager from ohos.notificationManager 2、查询系统是否支持进度条模板 NotificationManager.isSupportTemplate(downloadTemplate).then((data) {let isSupportTpl: boolean data; // 这里为true则表示支持模板// ... }).catch((err) {console.error(查询失败) }) 3、在第2步之后再构造进度条模板对象发布通知 import notificationManager from ohos.notificationManager import Prompt from system.promptEntry Component struct ProgressNotice {async publishProgressNotification() {let isSupportTpl: boolean;await notificationManager.isSupportTemplate(downloadTemplate).then((data) {isSupportTpl data;}).catch((err) {Prompt.showToast({message: 判断是否支持进度条模板时报错,error[${err}],duration: 2000})})if(isSupportTpl) {// 构造模板let template {name: downloadTemplate,data: {progressValue: 60, // 当前进度值progressMaxValue: 100 // 最大进度值}};let notificationRequest: notificationManager.NotificationRequest {// id: 100, // 这里的id可以不传content : {contentType: notificationManager.ContentType.NOTIFICATION_CONTENT_BASIC_TEXT,normal: {title: 文件下载鸿蒙学习手册.pdf,text: 下载进度,additionalText: 60%}},template: template};// 发布通知notificationManager.publish(notificationRequest).then(() {Prompt.showToast({message: 发布通知成功,duration: 2000})}).catch((err) {Prompt.showToast({message: 发布通知失败,error[${err}],duration: 2000})})} else {Prompt.showToast({message: 不支持downloadTemplate进度条通知模板,duration: 2000})}}build() {Row() {Column() {Button(发送进度条通知).width(50%).onClick((){this.publishProgressNotification()})}.width(100%)}.height(100%)} } 4、通知其它配置 4.1、设置通道通知 设置通道知可以让通知有不同的表现形式如社交类型的通知是横幅显示的并且有提示音。但一般的通知则不会横幅显示可以使用slotType来实现。 SlotType.SOCIAL_COMMUNICATION社交 类型状态栏中显示通知图标有横幅提示音SlotType.SERVICE_INFORMATION服务类型在状态栏中显示通知图标没有横幅但有提示音SlotType.CONTENT_INFORMATION内容类型状态栏中显示通知图标没有横幅和提示音SlotType.OTHER_TYPE其它类型状态栏中不显示通知图标没有横幅和提示音 import image from ohos.multimedia.image; import notificationManager from ohos.notificationManager; import Prompt from system.prompt; Entry Component struct SlotTypeTest {async publishSlotTypeNotification(){let imageArray await getContext(this).resourceManager.getMediaContent($r(app.media.tx).id);let imageResource image.createImageSource(imageArray.buffer);let opts {desiredSize: {height: 72, width: 72}};let largePixelMap await imageResource.createPixelMap(opts);let notificationRequest: notificationManager.NotificationRequest {id: 1,content: {contentType: notificationManager.ContentType.NOTIFICATION_CONTENT_BASIC_TEXT,normal:{title: 赵子龙,text: 等会大战三百回合~~}},slotType:notificationManager.SlotType.SOCIAL_COMMUNICATION,largeIcon: largePixelMap // 通知大图标};notificationManager.publish(notificationRequest).then(() {// 发布通知Prompt.showToast({message: 发布通知消息成功,duration: 2000})}).catch((err) {Prompt.showToast({message: 发布通知失败失败代码${err.code},失败原因${err.message},duration: 2000})});}build() {Row() {Column() {Button(发送通知).width(50%).onClick(() {this.publishSlotTypeNotification()})}.width(100%)}.height(100%)} } 5、为通知添加行为意图 WantAgent提供了封装行为意图的能力这里的行为意图能力就要是指拉起指定的应用组件及发布公共事件等能力。 HarmonyOS支持以通知的形式把WantAgent从发布方传递到接收方从而在接收方触发WantAgent中指定的意图。 为通知添加行为意图的实现方式如上图所示发布通知的应用向组件管理服务AMSAbility Manager Service申请WantAgent然后随其他通知信息 一起发送给桌面当用户在桌面通知栏上点击通知时触发WantAgent动作。 5.1、相关接口 接口名描述getWantAgent(info: WantAgentInfo, callback:AsyncCallbackWantAgent):void创建WantAgenttrigger(agent:WantAgent, triggerInfo:TrggerInfo,callback?:CallbackCompleteData):void触发WantAgent意图cancel(agent:WantAgent,callback:AsyncCallbackvoid):void取消WantAgentgetWant(agent:WantAgent,callback:AsyncCallbackWant):void获取WantAgent的wantequal(agent:WantAgent,otherAgent:WantAgent,callback:AsyncCallbackboolean):void判断两个WantAgent实例是否相等 5.2、开发步骤 1、导入模块 import NotificationManager from ohos.notificationManager; import wantAgent from ohos.app.ability.wantAgent; 2、发送通知 import notificationManager from ohos.notificationManager import wantAgent from ohos.wantAgent; import Prompt from system.prompt;let wantAgentObj null; // 保存创建成功的wantAgent对象后续使用其完成触发的动作 // 通过WantAgentInfo的operationType设置动作类型 let wantAgentInfo {wants: [{deviceId: , // 这里为空表示是本设备bundleName: com.xiaoxie, // 在app.json5中查找// moduleName: entry, // 在module.json5中查找如果待启动的ability在同一个module则可以不写abilityName: MyAbility, // 待启动ability的名称在module.json5中查找}],operationType: wantAgent.OperationType.START_ABILITY,requestCode: 0,wantAgentFlags:[wantAgent.WantAgentFlags.CONSTANT_FLAG] }Entry Component struct ButtonNotice {async publishButtonNotice(){// 创建WantAgentawait wantAgent.getWantAgent(wantAgentInfo).then((data) {wantAgentObj data;}).catch((err) {Prompt.showToast({message: 创建wangAgent失败${JSON.stringify(err)}})})let notificationRequest:notificationManager.NotificationRequest {id: 1,slotType: notificationManager.SlotType.SOCIAL_COMMUNICATION, // 这个是社交类型的通知content: {contentType: notificationManager.ContentType.NOTIFICATION_CONTENT_BASIC_TEXT,normal: {title: 赵子龙,text: 吃饭了吗?}},actionButtons: [{title: 回复,wantAgent: wantAgentObj}]};// 发布WantAgent通知notificationManager.publish(notificationRequest,(err) {if(err) {Prompt.showToast({message: 发布通知失败,duration: 2000})} else {Prompt.showToast({message: 发布通知成功,duration: 2000})}})}build() {Row() {Column() {Button(发送通知).width(50%).onClick(() {this.publishButtonNotice()})}.width(100%)}.height(100%)} } 6、后台代理提醒 当应用需要在指定时刻向用户发送一些业务提醒通知时HarmonyOS提供后台代理提醒功能在应用退居后台或退出后计时和提醒通知功能被系统后台代理接管。 后台代理提醒业务类型 1、倒计时类基于倒计时的提醒功能适用于短时的计时提醒业务 2、日历类基于日历的提醒功能适用于较长时间的提醒业务 3、闹钟类基于时钟的提醒功能适用于指定时刻的提醒业务 后台代理提醒就是由系统后台进程代理应用的提醒功能。后台代理提醒服务通过reminderAgentManager模块提醒定义、创建提醒、取消提醒... 提醒使用的前置条件 1、添加后台代理提醒的使用权限:ohos.permission.PUBLISH_AGENT_REMINDER 2、导入后台代理提醒reminderAgentManager模块 import reminderAgent from ohos.reminderAgentManager; import reminderAgent from ohos.reminderAgentManager; import Prompt from system.prompt;Entry Component struct ReminderTest {State message: string Hello World;reminderId:number;myReminderAgent(){let reminderRequest:reminderAgent.ReminderRequestAlarm {reminderType: reminderAgent.ReminderType.REMINDER_TYPE_ALARM,hour: 12,minute: 23,daysOfWeek: [1,2,3,4,5,6,7], // 星期1~7title: 提醒信息 title,ringDuration: 10, // 响铃时长snoozeTimes: 1, // 延迟提醒次数默认是0timeInterval: 60*60*5, // 延迟提醒间隔时间actionButton: [{title: 关闭,type: reminderAgent.ActionButtonType.ACTION_BUTTON_TYPE_CLOSE}]/*,wantAgent: { // 提醒到达时自动拉起的目标abilitypkgName: com.xiaoxie,abilityName: MyAbility}*/};reminderAgent.publishReminder(reminderRequest,(err,reminderId) {if(err) {Prompt.showToast({message: 发布提醒失败,duration: 2000})return;}Prompt.showToast({message: 发布提醒成功id reminderId,duration: 2000})this.reminderId reminderId;})}build() {Row() {Column() {Text(this.message).fontSize(20).fontWeight(FontWeight.Bold).margin({bottom:15})Button(发布提醒).width(50%).onClick(() {this.myReminderAgent()})}.width(100%)}.height(100%)} } 此处提醒没有成功暂未确认到具体原因 等更新
http://www.huolong8.cn/news/203087/

相关文章:

  • 关键词排名怎么查seo网站分析案例
  • 手机回收网站开发网站建设跟pc官网一样吗
  • 枣庄手机网站建设报价网站内容栏由什么构成
  • 网站响应式布局大公司需要seo是什么职业
  • 网站伪静态有什么用wordpress主题模块添加
  • 建站程序选择seo优化网
  • 网站打开404错误怎么解决方法云主机怎么做网站
  • 个人做 网站2019南宁平面设计公司
  • 如何查找网站根目录wordpress设置固定链接后
  • 网站站点建设分为模板做图 网站有哪些内容
  • 自己录入数据做问卷的网站网站版块设计
  • 深圳做微信网站公司义务网站建设
  • 微信网站推广手机怎么做网站免费的
  • 贵州公明建设投资咨询有限公司官方网站晋江论坛网站
  • 推上网站网站知识架构
  • 网站建设基本流程教学视频百度分公司 网站外包
  • 电子商务网站 注意东家乐装修公司简介
  • 企业网站建设三个原则石家庄网络推广公司有哪些
  • 建一个购物网站大约多少钱wordpress .
  • 怎样 建设电子商务网站怎么美化网站
  • 太原门户网站品牌设计与vi设计的区别
  • 自适应网站什么意思基于c 的网站开发
  • 大学校园网站建设oa软件公司排名
  • 做鲜花的网站有哪些无锡市城市建设规划局网站
  • 如何免费建设公司网站建设银行鞍山网站
  • 免费app网站下载大全精通wordpress
  • 如何做网站网页免费网站后台登陆验证码不显示
  • 食品企业网站建设电子元器件商城网站建设
  • 建设银行衡阳市分行网站建e网app下载链接
  • 网站内容智能wordpress文章列表页教程