当前仓库属于关闭状态,部分功能使用受限,详情请查阅 仓库状态说明
46 Star 180 Fork 4.8K

OpenHarmony/interface_sdk-js
关闭

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
@ohos.app.ability.AbilityLifecycleCallback.d.ts 13.73 KB
一键复制 编辑 原始数据 按行查看 历史
/*
* Copyright (c) 2022-2023 Huawei Device Co., Ltd.
* Licensed under the Apache License, Version 2.0 (the "License"),
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
/**
* @file
* @kit AbilityKit
*/
import UIAbility from './@ohos.app.ability.UIAbility';
import dataAbility from './@ohos.data.dataAbility';
import window from './@ohos.window';
/**
* The ability lifecycle callback.
*
* @syscap SystemCapability.Ability.AbilityRuntime.AbilityCore
* @StageModelOnly
* @since 9
*/
/**
* The ability lifecycle callback.
*
* @syscap SystemCapability.Ability.AbilityRuntime.AbilityCore
* @StageModelOnly
* @crossplatform
* @since 10
*/
/**
* The ability lifecycle callback.
*
* @syscap SystemCapability.Ability.AbilityRuntime.AbilityCore
* @StageModelOnly
* @crossplatform
* @atomicservice
* @since 11
*/
export default class AbilityLifecycleCallback {
/**
* Called back when an ability is started for initialization.
*
* @param { UIAbility } ability - Indicates the ability to register for listening.
* @syscap SystemCapability.Ability.AbilityRuntime.AbilityCore
* @StageModelOnly
* @since 9
*/
/**
* Called back when an ability is started for initialization.
*
* @param { UIAbility } ability - Indicates the ability to register for listening.
* @syscap SystemCapability.Ability.AbilityRuntime.AbilityCore
* @StageModelOnly
* @crossplatform
* @since 10
*/
/**
* Called back when an ability is started for initialization.
*
* @param { UIAbility } ability - Indicates the ability to register for listening.
* @syscap SystemCapability.Ability.AbilityRuntime.AbilityCore
* @StageModelOnly
* @crossplatform
* @atomicservice
* @since 11
*/
onAbilityCreate(ability: UIAbility): void;
/**
* Called back before an ability is started for initialization.
*
* @param { UIAbility } ability - Indicates the ability to register for listening.
* @syscap SystemCapability.Ability.AbilityRuntime.AbilityCore
* @stagemodelonly
* @atomicservice
* @since 12
*/
onAbilityWillCreate?(ability: UIAbility): void;
/**
* Called back when a window stage is created.
*
* @param { UIAbility } ability - Indicates the ability to register for listening.
* @param { window.WindowStage } windowStage - window stage to create
* @syscap SystemCapability.Ability.AbilityRuntime.AbilityCore
* @StageModelOnly
* @since 9
*/
/**
* Called back when a window stage is created.
*
* @param { UIAbility } ability - Indicates the ability to register for listening.
* @param { window.WindowStage } windowStage - window stage to create
* @syscap SystemCapability.Ability.AbilityRuntime.AbilityCore
* @StageModelOnly
* @crossplatform
* @since 10
*/
/**
* Called back when a window stage is created.
*
* @param { UIAbility } ability - Indicates the ability to register for listening.
* @param { window.WindowStage } windowStage - window stage to create
* @syscap SystemCapability.Ability.AbilityRuntime.AbilityCore
* @StageModelOnly
* @crossplatform
* @atomicservice
* @since 11
*/
onWindowStageCreate(ability: UIAbility, windowStage: window.WindowStage): void;
/**
* Called back before a window stage is created.
*
* @param { UIAbility } ability - Indicates the ability to register for listening.
* @param { window.WindowStage } windowStage - window stage to create
* @syscap SystemCapability.Ability.AbilityRuntime.AbilityCore
* @stagemodelonly
* @atomicservice
* @since 12
*/
onWindowStageWillCreate?(ability: UIAbility, windowStage: window.WindowStage): void;
/**
* Called back before the UIAbility will called onNewWant.
*
* @param { UIAbility } ability - Indicates the ability to register for listening.
* @syscap SystemCapability.Ability.AbilityRuntime.AbilityCore
* @stagemodelonly
* @atomicservice
* @since 12
*/
onWillNewWant?(ability: UIAbility): void;
/**
* Called back after the UIAbility called onNewWant.
*
* @param { UIAbility } ability - Indicates the ability to register for listening.
* @syscap SystemCapability.Ability.AbilityRuntime.AbilityCore
* @stagemodelonly
* @atomicservice
* @since 12
*/
onNewWant?(ability: UIAbility): void;
/**
* Called back when a window stage is active.
*
* @param { UIAbility } ability - Indicates the ability to register for listening.
* @param { window.WindowStage } windowStage - window stage to active
* @syscap SystemCapability.Ability.AbilityRuntime.AbilityCore
* @StageModelOnly
* @since 9
*/
/**
* Called back when a window stage is active.
*
* @param { UIAbility } ability - Indicates the ability to register for listening.
* @param { window.WindowStage } windowStage - window stage to active
* @syscap SystemCapability.Ability.AbilityRuntime.AbilityCore
* @StageModelOnly
* @atomicservice
* @since 11
*/
onWindowStageActive(ability: UIAbility, windowStage: window.WindowStage): void;
/**
* Called back when a window stage is inactive.
*
* @param { UIAbility } ability - Indicates the ability to register for listening.
* @param { window.WindowStage } windowStage - window stage to inactive
* @syscap SystemCapability.Ability.AbilityRuntime.AbilityCore
* @StageModelOnly
* @since 9
*/
/**
* Called back when a window stage is inactive.
*
* @param { UIAbility } ability - Indicates the ability to register for listening.
* @param { window.WindowStage } windowStage - window stage to inactive
* @syscap SystemCapability.Ability.AbilityRuntime.AbilityCore
* @StageModelOnly
* @atomicservice
* @since 11
*/
onWindowStageInactive(ability: UIAbility, windowStage: window.WindowStage): void;
/**
* Called back when a window stage is destroyed.
*
* @param { UIAbility } ability - Indicates the ability to register for listening.
* @param { window.WindowStage } windowStage - window stage to destroy
* @syscap SystemCapability.Ability.AbilityRuntime.AbilityCore
* @StageModelOnly
* @since 9
*/
/**
* Called back when a window stage is destroyed.
*
* @param { UIAbility } ability - Indicates the ability to register for listening.
* @param { window.WindowStage } windowStage - window stage to destroy
* @syscap SystemCapability.Ability.AbilityRuntime.AbilityCore
* @StageModelOnly
* @crossplatform
* @since 10
*/
/**
* Called back when a window stage is destroyed.
*
* @param { UIAbility } ability - Indicates the ability to register for listening.
* @param { window.WindowStage } windowStage - window stage to destroy
* @syscap SystemCapability.Ability.AbilityRuntime.AbilityCore
* @StageModelOnly
* @crossplatform
* @atomicservice
* @since 11
*/
onWindowStageDestroy(ability: UIAbility, windowStage: window.WindowStage): void;
/**
* Called back before a window stage is destroyed.
*
* @param { UIAbility } ability - Indicates the ability to register for listening.
* @param { window.WindowStage } windowStage - window stage to destroy
* @syscap SystemCapability.Ability.AbilityRuntime.AbilityCore
* @stagemodelonly
* @atomicservice
* @since 12
*/
onWindowStageWillDestroy?(ability: UIAbility, windowStage: window.WindowStage): void;
/**
* Called back when an ability is destroyed.
*
* @param { UIAbility } ability - Indicates the ability to register for listening.
* @syscap SystemCapability.Ability.AbilityRuntime.AbilityCore
* @StageModelOnly
* @since 9
*/
/**
* Called back when an ability is destroyed.
*
* @param { UIAbility } ability - Indicates the ability to register for listening.
* @syscap SystemCapability.Ability.AbilityRuntime.AbilityCore
* @StageModelOnly
* @crossplatform
* @since 10
*/
/**
* Called back when an ability is destroyed.
*
* @param { UIAbility } ability - Indicates the ability to register for listening.
* @syscap SystemCapability.Ability.AbilityRuntime.AbilityCore
* @StageModelOnly
* @crossplatform
* @atomicservice
* @since 11
*/
onAbilityDestroy(ability: UIAbility): void;
/**
* Called back before an ability is destroyed.
*
* @param { UIAbility } ability - Indicates the ability to register for listening.
* @syscap SystemCapability.Ability.AbilityRuntime.AbilityCore
* @stagemodelonly
* @atomicservice
* @since 12
*/
onAbilityWillDestroy?(ability: UIAbility): void;
/**
* Called back when the state of an ability changes to foreground.
*
* @param { UIAbility } ability - Indicates the ability to register for listening.
* @syscap SystemCapability.Ability.AbilityRuntime.AbilityCore
* @StageModelOnly
* @since 9
*/
/**
* Called back when the state of an ability changes to foreground.
*
* @param { UIAbility } ability - Indicates the ability to register for listening.
* @syscap SystemCapability.Ability.AbilityRuntime.AbilityCore
* @StageModelOnly
* @crossplatform
* @since 10
*/
/**
* Called back when the state of an ability changes to foreground.
*
* @param { UIAbility } ability - Indicates the ability to register for listening.
* @syscap SystemCapability.Ability.AbilityRuntime.AbilityCore
* @StageModelOnly
* @crossplatform
* @atomicservice
* @since 11
*/
onAbilityForeground(ability: UIAbility): void;
/**
* Called back before the state of an ability changes to foreground.
*
* @param { UIAbility } ability - Indicates the ability to register for listening.
* @syscap SystemCapability.Ability.AbilityRuntime.AbilityCore
* @stagemodelonly
* @atomicservice
* @since 12
*/
onAbilityWillForeground?(ability: UIAbility): void;
/**
* Called back when the state of an ability changes to background.
*
* @param { UIAbility } ability - Indicates the ability to register for listening.
* @syscap SystemCapability.Ability.AbilityRuntime.AbilityCore
* @StageModelOnly
* @since 9
*/
/**
* Called back when the state of an ability changes to background.
*
* @param { UIAbility } ability - Indicates the ability to register for listening.
* @syscap SystemCapability.Ability.AbilityRuntime.AbilityCore
* @StageModelOnly
* @crossplatform
* @since 10
*/
/**
* Called back when the state of an ability changes to background.
*
* @param { UIAbility } ability - Indicates the ability to register for listening.
* @syscap SystemCapability.Ability.AbilityRuntime.AbilityCore
* @StageModelOnly
* @crossplatform
* @atomicservice
* @since 11
*/
onAbilityBackground(ability: UIAbility): void;
/**
* Called back before the state of an ability changes to background.
*
* @param { UIAbility } ability - Indicates the ability to register for listening.
* @syscap SystemCapability.Ability.AbilityRuntime.AbilityCore
* @stagemodelonly
* @atomicservice
* @since 12
*/
onAbilityWillBackground?(ability: UIAbility): void;
/**
* Called back when an ability prepares to continue.
*
* @param { UIAbility } ability - Indicates the ability to register for listening.
* @syscap SystemCapability.Ability.AbilityRuntime.AbilityCore
* @StageModelOnly
* @since 9
*/
/**
* Called back when an ability prepares to continue.
*
* @param { UIAbility } ability - Indicates the ability to register for listening.
* @syscap SystemCapability.Ability.AbilityRuntime.AbilityCore
* @StageModelOnly
* @atomicservice
* @since 11
*/
onAbilityContinue(ability: UIAbility): void;
/**
* Called back when the ability prepares to call onContinue.
*
* @param { UIAbility } ability - Indicates the ability to register for listening.
* @syscap SystemCapability.Ability.AbilityRuntime.AbilityCore
* @stagemodelonly
* @atomicservice
* @since 12
*/
onAbilityWillContinue?(ability: UIAbility): void;
/**
* Called back when the ability prepares to call onWindowStageRestore.
*
* @param { UIAbility } ability - Indicates the ability to register for listening.
* @param { window.WindowStage } windowStage - window stage to restore.
* @syscap SystemCapability.Ability.AbilityRuntime.AbilityCore
* @stagemodelonly
* @atomicservice
* @since 12
*/
onWindowStageWillRestore?(ability: UIAbility, windowStage: window.WindowStage): void;
/**
* Called back when the ability has called onWindowStageRestore.
*
* @param { UIAbility } ability - Indicates the ability to register for listening.
* @param { window.WindowStage } windowStage - window stage to restore.
* @syscap SystemCapability.Ability.AbilityRuntime.AbilityCore
* @stagemodelonly
* @atomicservice
* @since 12
*/
onWindowStageRestore?(ability: UIAbility, windowStage: window.WindowStage): void;
/**
* Called back when the ability prepares to call onSaveState.
*
* @param { UIAbility } ability - Indicates the ability to register for listening.
* @syscap SystemCapability.Ability.AbilityRuntime.AbilityCore
* @stagemodelonly
* @atomicservice
* @since 12
*/
onAbilityWillSaveState?(ability: UIAbility): void;
/**
* Called back when the ability has called onSaveState.
*
* @param { UIAbility } ability - Indicates the ability to register for listening.
* @syscap SystemCapability.Ability.AbilityRuntime.AbilityCore
* @stagemodelonly
* @atomicservice
* @since 12
*/
onAbilitySaveState?(ability: UIAbility): void;
}
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/openharmony/interface_sdk-js.git
git@gitee.com:openharmony/interface_sdk-js.git
openharmony
interface_sdk-js
interface_sdk-js
master

搜索帮助