提交 9384c1be 编写于 作者: L liuliu

fixed f5e842d2 from https://gitee.com/liuliu_0/docs/pulls/24042

onBackPressed
Signed-off-by: Nliuliu <liuliu40@huawei.com>
Change-Id: Icdd9024643e1f5c34aeade9b691834d7df6e948d
上级 ecd3f7b9
......@@ -417,6 +417,32 @@ UIAbility生命周期回调,当系统预关闭开关打开后(配置系统
}
```
## UIAbility.onBackPressed<sup>10+</sup>
onBackPressed(): boolean;
UIAbility生命周期回调,当UIAbility侧滑返回时触发。根据返回值决定是否销毁UIAbility,默认为销毁UIAbility。
**系统能力**:SystemCapability.Ability.AbilityRuntime.AbilityCore
**返回值:**
| 类型 | 说明 |
| -- | -- |
| boolean | 返回true表示UIAbility将会被移到后台不销毁,返回false表示UIAbility将正常销毁。 |
**示例:**
```ts
import UIAbility from '@ohos.app.ability.UIAbility';
export default class EntryAbility extends UIAbility {
onBackPressed() {
return true;
}
}
```
## Caller
通用组件Caller通信客户端调用接口, 用来向通用组件服务端发送约定数据。
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册