HarmonyOS 鸿蒙Next 共事件模块,针对锁屏和解锁,回调事件并不会触发

发布于 1周前 作者 nodeper 最后一次编辑是 5天前 来自 鸿蒙OS

HarmonyOS 鸿蒙Next 共事件模块,针对锁屏和解锁,回调事件并不会触发

HarmonyOS 共事件模块,针对锁屏和解锁,回调事件并不会触发?

2 回复

参考示例代码

import Base from '@ohos.base';
import CommonEventManager from '@ohos.commonEventManager';
import WantAgent, { WantAgent as _WantAgent } from '@ohos.app.ability.wantAgent';
import Want from '@ohos.app.ability.Want';
import { notificationManager } from '@kit.NotificationKit';
import { hilog } from '@kit.PerformanceAnalysisKit';

export const LOG_TAG = ‘subscriber’

@Entry @Component struct Index { aboutToAppear(): void { notificationManager.requestEnableNotification(); }

build() { Row() { Column() { Text(‘订阅方’) .fontSize(30) .fontWeight(500) Button(‘订阅公共事件’) .fontSize(16) .fontWeight(500) .padding(15) .margin(10) .width(‘300’) .height(‘60’) .onClick(() => { //创建订阅者 try { CommonEventManager.createSubscriber(subscribeInfo, createCB); } catch (error) { let err: Base.BusinessError = error as Base.BusinessError; hilog.error(0xFF00, LOG_TAG, createSubscriber failed, code is ${err.code}, message is ${err.message}); } }) } .width(‘100%’) } .height(‘100%’) } }

let subscriber: CommonEventManager.CommonEventSubscriber; //用于保存创建成功的订阅者对象,后续使用其完成订阅及退订的动作 //订阅者信息 let subscribeInfo: CommonEventManager.CommonEventSubscribeInfo = { events: [‘usual.event.SCREEN_UNLOCKED’] };

//订阅公共事件回调 function SubscribeCB(err: Base.BusinessError, data: CommonEventManager.CommonEventData) { if (err) { hilog.error(0xFF00, LOG_TAG, subscribe failed, code is ${err.code}, message is ${err.message}); } else { publishNotification(); hilog.info(0xFF00, LOG_TAG, ‘subscribe success’); } }

//创建订阅者回调 function createCB(err: Base.BusinessError, commonEventSubscriber: CommonEventManager.CommonEventSubscriber) { if (!err) { hilog.info(0xFF00, LOG_TAG, ‘createSubscriber’); subscriber = commonEventSubscriber; //订阅公共事件 try { CommonEventManager.subscribe(subscriber, SubscribeCB); } catch (error) { let err: Base.BusinessError = error as Base.BusinessError; hilog.error(0xFF00, LOG_TAG, subscribe failed, code is ${err.code}, message is ${err.message}); } } else { hilog.error(0xFF00, LOG_TAG, createSubscriber failed, code is ${err.code}, message is ${err.message}); } }

async function publishNotification() { let wantAgent: _WantAgent; //WantAgentInfo对象 let wantAgentInfo: WantAgent.WantAgentInfo = { wants: [ { bundleName: ‘com.example.mysubscriber’, abilityName: ‘EntryAbility’, } as Want ], operationType: WantAgent.OperationType.START_ABILITIES, requestCode: 0, wantAgentFlags: [WantAgent.WantAgentFlags.UPDATE_PRESENT_FLAG] };

WantAgent.getWantAgent(wantAgentInfo).then((data) => { wantAgent = data; let notificationRequest: notificationManager.NotificationRequest = { content: { notificationContentType: notificationManager.ContentType.NOTIFICATION_CONTENT_BASIC_TEXT, normal: { title: ‘公共事件’, text: ‘系统公共事件’, additionalText: ‘Test_AdditionalText’, }, }, id: 6, notificationSlotType: notificationManager.SlotType.SOCIAL_COMMUNICATION, //社交类型通知 label: ‘Receive CommonEvent’, wantAgent: wantAgent, }; notificationManager.publish(notificationRequest); }); }<button style="position: absolute; padding: 4px 8px 0px; cursor: pointer; top: 8px; right: 8px; font-size: 14px;">复制</button>

针对您提到的HarmonyOS鸿蒙Next共事件模块中锁屏和解锁回调事件不触发的问题,这通常可能由几个因素导致:

  1. 权限配置:首先确认您的应用是否已经正确配置了接收锁屏和解锁事件所需的权限。在HarmonyOS中,某些系统事件可能需要特定的权限才能被监听。

  2. 事件注册:检查您的代码是否已正确注册了锁屏和解锁事件的监听器。确保监听器注册在合适的生命周期方法中,并且没有因为某些条件判断被错误地跳过。

  3. 系统兼容性:确认您的设备是否支持您正在尝试使用的API。某些API可能在不同版本的HarmonyOS中存在差异,或者在某些设备上不可用。

  4. 代码逻辑:仔细检查监听器内部的代码逻辑,确保没有因为逻辑错误导致事件处理被意外中断或忽略。

  5. 日志调试:利用HarmonyOS提供的日志工具,打印相关日志信息,以帮助定位问题所在。

如果以上步骤均无法解决问题,可能是系统层面的问题或者需要更深入的调试。此时,建议您联系HarmonyOS的官方客服获取进一步的支持。官网客服地址是:https://www.itying.com/category-93-b0.html。希望这些信息对您有所帮助!

回到顶部