HarmonyOS 鸿蒙Next 如何监听 UIAbility 的 onBackground方法
HarmonyOS 鸿蒙Next 如何监听 UIAbility 的 onBackground方法
除了在EntryAbllity.ets 里的onBackground方法里 可以收到 APP 进入后台的回调,
请问 HarmonyOS 提供 类似 注册监听 的方式吗?
例如 iOS 里的 :
[[NSNotificationCenter defaultCenter] addObserver:self selector:@selector(didEnterBackground) name:UIApplicationDidEnterBackgroundNotification object:nil];
2 回复
目前仅提供在EntryAbllity的onBackground来监听到页面进入后台,所以想在其他地方监听到应用进入后台,得在onBackground去通知。