UIAbilityContext是需要生存状态的UIAbility所对应的context,继承自Context,提供UIAbility的相关设置信息以及操作UIAbility和ServiceExtensionAbility的方法,如启动UIAbility,停止当前UIAbilityContext所属的UIAbility,启动、停止、毗连、断开毗连ServiceExtensionAbility等。
说明:
- 本模块首批接口从API version 9开始支持。后续版本的新增接口,采用上角标单独标志接口的起始版本。
- 本模块接口仅可在Stage模子下使用。
- 本模块接口需要在主线程中使用,不要在Worker、TaskPool等子线程中使用。
导入模块
- import common from '@ohos.app.ability.common';
复制代码 属性
体系本领:以下各项对应的体系本领均为SystemCapability.Ability.AbilityRuntime.Core
名称类型可读可写说明abilityInfoAbilityInfo是否UIAbility的相关信息。currentHapModuleInfoHapModuleInfo是否当前HAP的信息。configConfiguration是否与UIAbility相关的设置信息,如语言、颜色模式等。 关于示例代码的说明:
在本文档的示例中,通过来获取,此中代表继承自的实例。如需要在页面中使用提供的本领,请参见获取UIAbility的上下文信息。this.contextUIAbilityContextthisUIAbilityUIAbilityUIAbilityContext
UIAbilityContext.startAbility
startAbility(want: Want, callback: AsyncCallback<void>): void
启动Ability(callback情势)。
使用规则:
- 调用方应用位于后台时,使用该接口启动Ability需申请权限。ohos.permission.START_ABILITIES_FROM_BACKGROUND
- 跨应用场景下,目标Ability的exported属性若设置为false,调用方应用需申请权限。ohos.permission.START_INVISIBLE_ABILITY
- 组件启动规则详见:组件启动规则(Stage模子)。
- 跨任务链启动时,如果需要跨任务链进行返回,需要参考Want中的parameter参数用法。
体系本领:SystemCapability.Ability.AbilityRuntime.Core
参数:
参数名类型必填说明wantWant是启动Ability的want信息。callbackAsyncCallback<void>是callback情势返回启动效果。 错误码:
错误码ID错误信息16000001The specified ability does not exist.16000002Incorrect ability type.16000004Can not start invisible component.16000005The specified process does not have the permission.16000006Cross-user operations are not allowed.16000008The crowdtesting application expires.16000009An ability cannot be started or stopped in Wukong mode.16000010The call with the continuation flag is forbidden.16000011The context does not exist.16000012The application is controlled.16000013The application is controlled by EDM.16000050Internal error.16000053The ability is not on the top of the UI.16000055Installation-free timed out.16200001The caller has been released. 错误码详细介绍请参考元本领子体系错误码
示例:
- import UIAbility from '@ohos.app.ability.UIAbility';
- import Want from '@ohos.app.ability.Want';
- import { BusinessError } from '@ohos.base';
- export default class EntryAbility extends UIAbility {
-
- onForeground() {
- let want: Want = {
- bundleName: 'com.example.myapplication',
- abilityName: 'EntryAbility'
- };
- try {
- this.context.startAbility(want, (err: BusinessError) => {
- if (err.code) {
- // 处理业务逻辑错误
- console.error(`startAbility failed, code is ${err.code}, message is ${err.message}`);
- return;
- }
- // 执行正常业务
- console.info('startAbility succeed');
- });
- } catch (err) {
- // 处理入参错误异常
- let code = (err as BusinessError).code;
- let message = (err as BusinessError).message;
- console.error(`startAbility failed, code is ${code}, message is ${message}`);
- }
- }
- }
复制代码 UIAbilityContext.startAbility
startAbility(want: Want, options: StartOptions, callback: AsyncCallback<void>): void
启动Ability(callback情势)。
使用规则:
- 调用方应用位于后台时,使用该接口启动Ability需申请权限。ohos.permission.START_ABILITIES_FROM_BACKGROUND
- 跨应用场景下,目标Ability的exported属性若设置为false,调用方应用需申请权限。ohos.permission.START_INVISIBLE_ABILITY
- 组件启动规则详见:组件启动规则(Stage模子)。
体系本领:SystemCapability.Ability.AbilityRuntime.Core
参数:
参数名类型必填说明wantWant是启动Ability的want信息。optionsStartOptions是启动Ability所携带的参数。callbackAsyncCallback<void>是callback情势返回启动效果。 错误码:
错误码ID错误信息16000001The specified ability does not exist.16000002Incorrect ability type.16000004Can not start invisible component.16000005The specified process does not have the permission.16000006Cross-user operations are not allowed.16000008The crowdtesting application expires.16000009An ability cannot be started or stopped in Wukong mode.16000010The call with the continuation flag is forbidden.16000011The context does not exist.16000012The application is controlled.16000013The application is controlled by EDM.16000050Internal error.16000053The ability is not on the top of the UI.16000055Installation-free timed out.16200001The caller has been released. 错误码详细介绍请参考元本领子体系错误码
示例:
- import UIAbility from '@ohos.app.ability.UIAbility';
- import Want from '@ohos.app.ability.Want';
- import StartOptions from '@ohos.app.ability.StartOptions';
- import { BusinessError } from '@ohos.base';
- export default class EntryAbility extends UIAbility {
- onForeground() {
- let want: Want = {
- deviceId: '',
- bundleName: 'com.example.myapplication',
- abilityName: 'EntryAbility'
- };
- let options: StartOptions = {
- windowMode: 0
- };
- try {
- this.context.startAbility(want, options, (err: BusinessError) => {
- if (err.code) {
- // 处理业务逻辑错误
- console.error(`startAbility failed, code is ${err.code}, message is ${err.message}`);
- return;
- }
- // 执行正常业务
- console.info('startAbility succeed');
- });
- } catch (err) {
- // 处理入参错误异常
- let code = (err as BusinessError).code;
- let message = (err as BusinessError).message;
- console.error(`startAbility failed, code is ${code}, message is ${message}`);
- }
- }
- }
复制代码 UIAbilityContext.startAbility
startAbility(want: Want, options?: StartOptions): Promise<void>
启动Ability(promise情势)。
使用规则:
- 调用方应用位于后台时,使用该接口启动Ability需申请权限。ohos.permission.START_ABILITIES_FROM_BACKGROUND
- 跨应用场景下,目标Ability的exported属性若设置为false,调用方应用需申请权限。ohos.permission.START_INVISIBLE_ABILITY
- 组件启动规则详见:组件启动规则(Stage模子)。
体系本领:SystemCapability.Ability.AbilityRuntime.Core
参数:
参数名类型必填说明wantWant是启动Ability的want信息。optionsStartOptions否启动Ability所携带的参数。 返回值:
类型说明Promise<void>Promise情势返回启动效果。 错误码:
错误码ID错误信息16000001The specified ability does not exist.16000002Incorrect ability type.16000004Can not start invisible component.16000005The specified process does not have the permission.16000006Cross-user operations are not allowed.16000008The crowdtesting application expires.16000009An ability cannot be started or stopped in Wukong mode.16000010The call with the continuation flag is forbidden.16000011The context does not exist.16000012The application is controlled.16000013The application is controlled by EDM.16000050Internal error.16000053The ability is not on the top of the UI.16000055Installation-free timed out.16200001The caller has been released. 错误码详细介绍请参考元本领子体系错误码
示例:
- import UIAbility from '@ohos.app.ability.UIAbility';
- import Want from '@ohos.app.ability.Want';
- import StartOptions from '@ohos.app.ability.StartOptions';
- import { BusinessError } from '@ohos.base';
- export default class EntryAbility extends UIAbility {
- onForeground() {
- let want: Want = {
- bundleName: 'com.example.myapplication',
- abilityName: 'EntryAbility'
- };
- let options: StartOptions = {
- windowMode: 0,
- };
- try {
- this.context.startAbility(want, options)
- .then(() => {
- // 执行正常业务
- console.info('startAbility succeed');
- })
- .catch((err: BusinessError) => {
- // 处理业务逻辑错误
- console.error(`startAbility failed, code is ${err.code}, message is ${err.message}`);
- });
- } catch (err) {
- // 处理入参错误异常
- let code = (err as BusinessError).code;
- let message = (err as BusinessError).message;
- console.error(`startAbility failed, code is ${code}, message is ${message}`);
- }
- }
- }
复制代码 UIAbilityContext.startAbilityForResult
startAbilityForResult(want: Want, callback: AsyncCallback<AbilityResult>): void
启动一个Ability。Ability被启动后,有如下情况(callback情势):
- 正常情况下可通过调用terminateSelfWithResult接口使之终止并且返回效果给调用方。
- 异常情况下比如杀死Ability会返回异常信息给调用方, 异常信息中resultCode为-1。
- 如果被启动的Ability模式是单实例模式, 不同应用多次调用该接口启动这个Ability,当这个Ability调用terminateSelfWithResult接口使之终止时,只将正常效果返回给末了一个调用方, 别的调用方返回异常信息, 异常信息中resultCode为-1。
使用规则:
- 调用方应用位于后台时,使用该接口启动Ability需申请权限。ohos.permission.START_ABILITIES_FROM_BACKGROUND
- 跨应用场景下,目标Ability的exported属性若设置为false,调用方应用需申请权限。ohos.permission.START_INVISIBLE_ABILITY
- 组件启动规则详见:组件启动规则(Stage模子)。
体系本领:SystemCapability.Ability.AbilityRuntime.Core
参数:
参数名类型必填说明wantWant是启动Ability的want信息。callbackAsyncCallback<AbilityResult>是实行效果回调函数。 错误码:
错误码ID错误信息16000001The specified ability does not exist.16000002Incorrect ability type.16000004Can not start invisible component.16000005The specified process does not have the permission.16000006Cross-user operations are not allowed.16000008The crowdtesting application expires.16000009An ability cannot be started or stopped in Wukong mode.16000010The call with the continuation flag is forbidden.16000011The context does not exist.16000012The application is controlled.16000013The application is controlled by EDM.16000050Internal error.16000053The ability is not on the top of the UI.16000055Installation-free timed out.16200001The caller has been released. 错误码详细介绍请参考元本领子体系错误码
示例:
- import UIAbility from '@ohos.app.ability.UIAbility';
- import common from '@ohos.app.ability.common';
- import Want from '@ohos.app.ability.Want';
- import { BusinessError } from '@ohos.base';
- export default class EntryAbility extends UIAbility {
- onForeground() {
- let want: Want = {
- deviceId: '',
- bundleName: 'com.example.myapplication',
- abilityName: 'EntryAbility'
- };
- try {
- this.context.startAbilityForResult(want, (err: BusinessError, result: common.AbilityResult) => {
- if (err.code) {
- // 处理业务逻辑错误
- console.error(`startAbilityForResult failed, code is ${err.code}, message is ${err.message}`);
- return;
- }
- // 执行正常业务
- console.info('startAbilityForResult succeed');
- });
- } catch (err) {
- // 处理入参错误异常
- let code = (err as BusinessError).code;
- let message = (err as BusinessError).message;
- console.error(`startAbilityForResult failed, code is ${code}, message is ${message}`);
- }
- }
- }
复制代码 UIAbilityContext.startAbilityForResult
startAbilityForResult(want: Want, options: StartOptions, callback: AsyncCallback<AbilityResult>): void
启动一个Ability。Ability被启动后,有如下情况(callback情势):
- 正常情况下可通过调用terminateSelfWithResult接口使之终止并且返回效果给调用方。
- 异常情况下比如杀死Ability会返回异常信息给调用方,异常信息中resultCode为-1。
- 如果被启动的Ability模式是单实例模式, 不同应用多次调用该接口启动这个Ability,当这个Ability调用terminateSelfWithResult接口使之终止时,只将正常效果返回给末了一个调用方,别的调用方返回异常信息, 异常信息中resultCode为-1。
使用规则:
- 调用方应用位于后台时,使用该接口启动Ability需申请权限。ohos.permission.START_ABILITIES_FROM_BACKGROUND
- 跨应用场景下,目标Ability的exported属性若设置为false,调用方应用需申请权限。ohos.permission.START_INVISIBLE_ABILITY
- 组件启动规则详见:组件启动规则(Stage模子)。
体系本领:SystemCapability.Ability.AbilityRuntime.Core
参数:
参数名类型必填说明wantWant是启动Ability的want信息。optionsStartOptions是启动Ability所携带的参数。callbackAsyncCallback<AbilityResult>是实行效果回调函数。 错误码:
错误码ID错误信息16000001The specified ability does not exist.16000002Incorrect ability type.16000004Can not start invisible component.16000005The specified process does not have the permission.16000006Cross-user operations are not allowed.16000008The crowdtesting application expires.16000009An ability cannot be started or stopped in Wukong mode.16000010The call with the continuation flag is forbidden.16000011The context does not exist.16000012The application is controlled.16000013The application is controlled by EDM.16000050Internal error.16000053The ability is not on the top of the UI.16000055Installation-free timed out.16200001The caller has been released. 错误码详细介绍请参考元本领子体系错误码
示例:
- import UIAbility from '@ohos.app.ability.UIAbility';
- import common from '@ohos.app.ability.common';
- import Want from '@ohos.app.ability.Want';
- import StartOptions from '@ohos.app.ability.StartOptions';
- import { BusinessError } from '@ohos.base';
- export default class EntryAbility extends UIAbility {
- onForeground() {
- let want: Want = {
- deviceId: '',
- bundleName: 'com.example.myapplication',
- abilityName: 'EntryAbility'
- };
- let options: StartOptions = {
- windowMode: 0,
- };
- try {
- this.context.startAbilityForResult(want, options, (err: BusinessError, result: common.AbilityResult) => {
- if (err.code) {
- // 处理业务逻辑错误
- console.error(`startAbilityForResult failed, code is ${err.code}, message is ${err.message}`);
- return;
- }
- // 执行正常业务
- console.info('startAbilityForResult succeed');
- });
- } catch (err) {
- // 处理入参错误异常
- let code = (err as BusinessError).code;
- let message = (err as BusinessError).message;
- console.error(`startAbilityForResult failed, code is ${code}, message is ${message}`);
- }
- }
- }
复制代码 UIAbilityContext.startAbilityForResult
startAbilityForResult(want: Want, options?: StartOptions): Promise<AbilityResult>
启动一个Ability。Ability被启动后,有如下情况(promise情势):
- 正常情况下可通过调用terminateSelfWithResult接口使之终止并且返回效果给调用方。
- 异常情况下比如杀死Ability会返回异常信息给调用方, 异常信息中resultCode为-1。
- 如果被启动的Ability模式是单实例模式, 不同应用多次调用该接口启动这个Ability,当这个Ability调用terminateSelfWithResult接口使之终止时,只将正常效果返回给末了一个调用方, 别的调用方返回异常信息, 异常信息中resultCode为-1。
使用规则:
- 调用方应用位于后台时,使用该接口启动Ability需申请权限。ohos.permission.START_ABILITIES_FROM_BACKGROUND
- 跨应用场景下,目标Ability的exported属性若设置为false,调用方应用需申请权限。ohos.permission.START_INVISIBLE_ABILITY
- 组件启动规则详见:组件启动规则(Stage模子)。
体系本领:SystemCapability.Ability.AbilityRuntime.Core
参数:
参数名类型必填说明wantWant是启动Ability的want信息。optionsStartOptions否启动Ability所携带的参数。 返回值:
类型说明Promise<AbilityResult>Promise情势返回实行效果。 错误码:
错误码ID错误信息16000001The specified ability does not exist.16000002Incorrect ability type.16000004Can not start invisible component.16000005The specified process does not have the permission.16000006Cross-user operations are not allowed.16000008The crowdtesting application expires.16000009An ability cannot be started or stopped in Wukong mode.16000010The call with the continuation flag is forbidden.16000011The context does not exist.16000012The application is controlled.16000013The application is controlled by EDM.16000050Internal error.16000053The ability is not on the top of the UI.16000055Installation-free timed out.16200001The caller has been released. 错误码详细介绍请参考元本领子体系错误码
示例:
- import UIAbility from '@ohos.app.ability.UIAbility';
- import common from '@ohos.app.ability.common';
- import Want from '@ohos.app.ability.Want';
- import StartOptions from '@ohos.app.ability.StartOptions';
- import { BusinessError } from '@ohos.base';
- export default class EntryAbility extends UIAbility {
- onForeground() {
- let want: Want = {
- bundleName: 'com.example.myapplication',
- abilityName: 'EntryAbility'
- };
- let options: StartOptions = {
- windowMode: 0,
- };
- try {
- this.context.startAbilityForResult(want, options)
- .then((result: common.AbilityResult) => {
- // 执行正常业务
- console.info('startAbilityForResult succeed');
- })
- .catch((err: BusinessError) => {
- // 处理业务逻辑错误
- console.error(`startAbilityForResult failed, code is ${err.code}, message is ${err.message}`);
- });
- } catch (err) {
- // 处理入参错误异常
- let code = (err as BusinessError).code;
- let message = (err as BusinessError).message;
- console.error(`startAbilityForResult failed, code is ${code}, message is ${message}`);
- }
- }
- }
复制代码 UIAbilityContext.startAbilityForResultWithAccount
startAbilityForResultWithAccount(want: Want, accountId: number, callback: AsyncCallback<AbilityResult>): void
启动一个Ability并在该Ability销毁时返回实行效果(callback情势)。
使用规则:
- 调用方应用位于后台时,使用该接口启动Ability需申请权限。ohos.permission.START_ABILITIES_FROM_BACKGROUND
- 跨应用场景下,目标Ability的exported属性若设置为false,调用方应用需申请权限。ohos.permission.START_INVISIBLE_ABILITY
- 组件启动规则详见:组件启动规则(Stage模子)。
说明:
当accountId为当前用户时,不需要校验该权限。
需要权限: ohos.permission.INTERACT_ACROSS_LOCAL_ACCOUNTS
体系本领:SystemCapability.Ability.AbilityRuntime.Core
体系API: 此接口为体系接口,三方应用不支持调用。
参数:
参数名类型必填说明wantWant是启动Ability的want信息。accountIdnumber是体系帐号的帐号ID,详情参考getCreatedOsAccountsCount。callbackAsyncCallback<AbilityResult>是启动Ability的回调函数,返回Ability效果。 错误码:
错误码ID错误信息16000001The specified ability does not exist.16000002Incorrect ability type.16000004Can not start invisible component.16000005The specified process does not have the permission.16000006Cross-user operations are not allowed.16000008The crowdtesting application expires.16000009An ability cannot be started or stopped in Wukong mode.16000010The call with the continuation flag is forbidden.16000011The context does not exist.16000012The application is controlled.16000013The application is controlled by EDM.16000050Internal error.16000053The ability is not on the top of the UI.16000055Installation-free timed out.16200001The caller has been released. 错误码详细介绍请参考元本领子体系错误码
示例:
- import UIAbility from '@ohos.app.ability.UIAbility';
- import common from '@ohos.app.ability.common';
- import Want from '@ohos.app.ability.Want';
- import { BusinessError } from '@ohos.base';
- export default class EntryAbility extends UIAbility {
- onForeground() {
- let want: Want = {
- deviceId: '',
- bundleName: 'com.example.myapplication',
- abilityName: 'EntryAbility'
- };
- let accountId = 100;
- try {
- this.context.startAbilityForResultWithAccount(want, accountId, (err: BusinessError, result: common.AbilityResult) => {
- if (err.code) {
- // 处理业务逻辑错误
- console.error(`startAbilityForResultWithAccount failed, code is ${err.code}, message is ${err.message}`);
- return;
- }
- // 执行正常业务
- console.info('startAbilityForResultWithAccount succeed');
- });
- } catch (err) {
- // 处理入参错误异常
- let code = (err as BusinessError).code;
- let message = (err as BusinessError).message;
- console.error(`startAbilityForResultWithAccount failed, code is ${code}, message is ${message}`);
- }
- }
- }
复制代码 UIAbilityContext.startAbilityForResultWithAccount
startAbilityForResultWithAccount(want: Want, accountId: number, options: StartOptions, callback: AsyncCallback<void>): void
启动一个Ability并在该Ability销毁时返回实行效果(callback情势)。
使用规则:
- 调用方应用位于后台时,使用该接口启动Ability需申请权限。ohos.permission.START_ABILITIES_FROM_BACKGROUND
- 跨应用场景下,目标Ability的exported属性若设置为false,调用方应用需申请权限。ohos.permission.START_INVISIBLE_ABILITY
- 组件启动规则详见:组件启动规则(Stage模子)。
说明:
当accountId为当前用户时,不需要校验该权限。
需要权限: ohos.permission.INTERACT_ACROSS_LOCAL_ACCOUNTS
体系本领:SystemCapability.Ability.AbilityRuntime.Core
体系API: 此接口为体系接口,三方应用不支持调用。
参数:
参数名类型必填说明wantWant是启动Ability的want信息。accountIdnumber是体系帐号的帐号ID,详情参考getCreatedOsAccountsCount。optionsStartOptions是启动Ability所携带的参数。callbackAsyncCallback<void>是启动Ability后,Ability被销毁时的回调函数。 错误码:
错误码ID错误信息16000001The specified ability does not exist.16000002Incorrect ability type.16000004Can not start invisible component.16000005The specified process does not have the permission.16000006Cross-user operations are not allowed.16000008The crowdtesting application expires.16000009An ability cannot be started or stopped in Wukong mode.16000010The call with the continuation flag is forbidden.16000011The context does not exist.16000012The application is controlled.16000013The application is controlled by EDM.16000050Internal error.16000053The ability is not on the top of the UI.16000055Installation-free timed out.16200001The caller has been released. 错误码详细介绍请参考元本领子体系错误码
示例:
- import UIAbility from '@ohos.app.ability.UIAbility';
- import Want from '@ohos.app.ability.Want';
- import StartOptions from '@ohos.app.ability.StartOptions';
- import { BusinessError } from '@ohos.base';
- export default class EntryAbility extends UIAbility {
- onForeground() {
- let want: Want = {
- deviceId: '',
- bundleName: 'com.example.myapplication',
- abilityName: 'EntryAbility'
- };
- let accountId = 100;
- let options: StartOptions = {
- windowMode: 0
- };
- try {
- this.context.startAbilityForResultWithAccount(want, accountId, options, (err: BusinessError) => {
- if (err.code) {
- // 处理业务逻辑错误
- console.error(`startAbilityForResultWithAccount failed, code is ${err.code}, message is ${err.message}`);
- return;
- }
- // 执行正常业务
- console.info('startAbilityForResultWithAccount succeed');
- });
- } catch (err) {
- // 处理入参错误异常
- let code = (err as BusinessError).code;
- let message = (err as BusinessError).message;
- console.error(`startAbilityForResultWithAccount failed, code is ${code}, message is ${message}`);
- }
- }
- }
复制代码 UIAbilityContext.startAbilityForResultWithAccount
startAbilityForResultWithAccount(want: Want, accountId: number, options?: StartOptions): Promise<AbilityResult>
启动一个Ability并在该Ability销毁时返回实行效果(promise情势)。
使用规则:
- 调用方应用位于后台时,使用该接口启动Ability需申请权限。ohos.permission.START_ABILITIES_FROM_BACKGROUND
- 跨应用场景下,目标Ability的exported属性若设置为false,调用方应用需申请权限。ohos.permission.START_INVISIBLE_ABILITY
- 组件启动规则详见:组件启动规则(Stage模子)。
说明:
当accountId为当前用户时,不需要校验该权限。
需要权限: ohos.permission.INTERACT_ACROSS_LOCAL_ACCOUNTS
体系本领:SystemCapability.Ability.AbilityRuntime.Core
体系API: 此接口为体系接口,三方应用不支持调用。
参数:
参数名类型必填说明wantWant是启动Ability的want信息。accountIdnumber是体系帐号的帐号ID,详情参考getCreatedOsAccountsCount。optionsStartOptions否启动Ability所携带的参数。 返回值:
类型说明Promise<AbilityResult>Ability被销毁时的回调函数,包含AbilityResult参数。 错误码:
错误码ID错误信息16000001The specified ability does not exist.16000002Incorrect ability type.16000004Can not start invisible component.16000005The specified process does not have the permission.16000006Cross-user operations are not allowed.16000008The crowdtesting application expires.16000009An ability cannot be started or stopped in Wukong mode.16000010The call with the continuation flag is forbidden.16000011The context does not exist.16000012The application is controlled.16000013The application is controlled by EDM.16000050Internal error.16000053The ability is not on the top of the UI.16000055Installation-free timed out.16200001The caller has been released. 错误码详细介绍请参考元本领子体系错误码
示例:
- import UIAbility from '@ohos.app.ability.UIAbility';
- import common from '@ohos.app.ability.common';
- import Want from '@ohos.app.ability.Want';
- import StartOptions from '@ohos.app.ability.StartOptions';
- import { BusinessError } from '@ohos.base';
- export default class EntryAbility extends UIAbility {
- onForeground() {
- let want: Want = {
- deviceId: '',
- bundleName: 'com.example.myapplication',
- abilityName: 'EntryAbility'
- };
- let accountId = 100;
- let options: StartOptions = {
- windowMode: 0
- };
- try {
- this.context.startAbilityForResultWithAccount(want, accountId, options)
- .then((result: common.AbilityResult) => {
- // 执行正常业务
- console.info('startAbilityForResultWithAccount succeed');
- })
- .catch((err: BusinessError) => {
- // 处理业务逻辑错误
- console.error(`startAbilityForResultWithAccount failed, code is ${err.code}, message is ${err.message}`);
- });
- } catch (err) {
- // 处理入参错误异常
- let code = (err as BusinessError).code;
- let message = (err as BusinessError).message;
- console.error(`startAbilityForResultWithAccount failed, code is ${code}, message is ${message}`);
- }
- }
- }
复制代码 UIAbilityContext.startServiceExtensionAbility
startServiceExtensionAbility(want: Want, callback: AsyncCallback<void>): void
启动一个新的ServiceExtensionAbility(callback情势)。
体系本领:SystemCapability.Ability.AbilityRuntime.Core
体系API: 此接口为体系接口,三方应用不支持调用。
参数:
参数名类型必填说明wantWant是启动ServiceExtensionAbility的want信息。callbackAsyncCallback<void>是启动ServiceExtensionAbility的回调函数。 错误码:
错误码ID错误信息16000001The specified ability does not exist.16000002Incorrect ability type.16000004Can not start invisible component.16000005The specified process does not have the permission.16000006Cross-user operations are not allowed.16000008The crowdtesting application expires.16000011The context does not exist.16000012The application is controlled.16000013The application is controlled by EDM.16000050Internal error.16200001The caller has been released. 错误码详细介绍请参考元本领子体系错误码
示例:
- import UIAbility from '@ohos.app.ability.UIAbility';
- import Want from '@ohos.app.ability.Want';
- import { BusinessError } from '@ohos.base';
- export default class EntryAbility extends UIAbility {
- onForeground() {
- let want: Want = {
- deviceId: '',
- bundleName: 'com.example.myapplication',
- abilityName: 'ServiceExtensionAbility'
- };
- try {
- this.context.startServiceExtensionAbility(want)
- .then(() => {
- // 执行正常业务
- console.info('startServiceExtensionAbility succeed');
- })
- .catch((err: BusinessError) => {
- // 处理业务逻辑错误
- console.error(`startServiceExtensionAbility failed, code is ${err.code}, message is ${err.message}`);
- });
- } catch (err) {
- // 处理入参错误异常
- let code = (err as BusinessError).code;
- let message = (err as BusinessError).message;
- console.error(`startServiceExtensionAbility failed, code is ${code}, message is ${message}`);
- }
- }
- }
复制代码 UIAbilityContext.startServiceExtensionAbility
startServiceExtensionAbility(want: Want): Promise<void>
启动一个新的ServiceExtensionAbility(Promise情势)。
体系本领:SystemCapability.Ability.AbilityRuntime.Core
体系API: 此接口为体系接口,三方应用不支持调用。
参数:
参数名类型必填说明wantWant是启动ServiceExtensionAbility的want信息。 错误码:
错误码ID错误信息16000001The specified ability does not exist.16000002Incorrect ability type.16000004Can not start invisible component.16000005The specified process does not have the permission.16000006Cross-user operations are not allowed.16000008The crowdtesting application expires.16000011The context does not exist.16000012The application is controlled.16000013The application is controlled by EDM.16000050Internal error.16200001The caller has been released. 错误码详细介绍请参考元本领子体系错误码
示例:
- import UIAbility from '@ohos.app.ability.UIAbility';
- import Want from '@ohos.app.ability.Want';
- import { BusinessError } from '@ohos.base';
- export default class EntryAbility extends UIAbility {
- onForeground() {
- let want: Want = {
- deviceId: '',
- bundleName: 'com.example.myapplication',
- abilityName: 'ServiceExtensionAbility'
- };
- try {
- this.context.startServiceExtensionAbility(want)
- .then(() => {
- // 执行正常业务
- console.info('startServiceExtensionAbility succeed');
- })
- .catch((err: BusinessError) => {
- // 处理业务逻辑错误
- console.error(`startServiceExtensionAbility failed, code is ${err.code}, message is ${err.message}`);
- });
- } catch (err) {
- // 处理入参错误异常
- let code = (err as BusinessError).code;
- let message = (err as BusinessError).message;
- console.error(`startServiceExtensionAbility failed, code is ${code}, message is ${message}`);
- }
- }
- }
复制代码 UIAbilityContext.startServiceExtensionAbilityWithAccount
startServiceExtensionAbilityWithAccount(want: Want, accountId: number, callback: AsyncCallback<void>): void
启动一个新的ServiceExtensionAbility(callback情势)。
说明:
当accountId为当前用户时,不需要校验该权限。
需要权限: ohos.permission.INTERACT_ACROSS_LOCAL_ACCOUNTS
体系本领:SystemCapability.Ability.AbilityRuntime.Core
体系API: 此接口为体系接口,三方应用不支持调用。
参数:
参数名类型必填说明wantWant是启动ServiceExtensionAbility的want信息。accountIdnumber是体系帐号的帐号ID,详情参考getCreatedOsAccountsCount。callbackAsyncCallback<void>是启动ServiceExtensionAbility的回调函数。 错误码:
错误码ID错误信息16000001The specified ability does not exist.16000002Incorrect ability type.16000004Can not start invisible component.16000005The specified process does not have the permission.16000006Cross-user operations are not allowed.16000008The crowdtesting application expires.16000011The context does not exist.16000012The application is controlled.16000013The application is controlled by EDM.16000050Internal error.16200001The caller has been released. 错误码详细介绍请参考元本领子体系错误码
示例:
- import UIAbility from '@ohos.app.ability.UIAbility';
- import Want from '@ohos.app.ability.Want';
- import { BusinessError } from '@ohos.base';
- export default class EntryAbility extends UIAbility {
- onForeground() {
- let want: Want = {
- deviceId: '',
- bundleName: 'com.example.myapplication',
- abilityName: 'ServiceExtensionAbility'
- };
- let accountId = 100;
- try {
- this.context.startServiceExtensionAbilityWithAccount(want, accountId, (err: BusinessError) => {
- if (err.code) {
- // 处理业务逻辑错误
- console.error(`startServiceExtensionAbilityWithAccount failed, code is ${err.code}, message is ${err.message}`);
- return;
- }
- // 执行正常业务
- console.info('startServiceExtensionAbilityWithAccount succeed');
- });
- } catch (err) {
- // 处理入参错误异常
- let code = (err as BusinessError).code;
- let message = (err as BusinessError).message;
- console.error(`startServiceExtensionAbilityWithAccount failed, code is ${code}, message is ${message}`);
- }
- }
- }
复制代码 UIAbilityContext.startServiceExtensionAbilityWithAccount
startServiceExtensionAbilityWithAccount(want: Want, accountId: number): Promise<void>
启动一个新的ServiceExtensionAbility(Promise情势)。
说明:
当accountId为当前用户时,不需要校验该权限。
需要权限: ohos.permission.INTERACT_ACROSS_LOCAL_ACCOUNTS
体系本领:SystemCapability.Ability.AbilityRuntime.Core
体系API: 此接口为体系接口,三方应用不支持调用。
参数:
参数名类型必填说明wantWant是启动Ability的want信息。accountIdnumber是体系帐号的帐号ID,详情参考getCreatedOsAccountsCount。 错误码:
错误码ID错误信息16000001The specified ability does not exist.16000002Incorrect ability type.16000004Can not start invisible component.16000005The specified process does not have the permission.16000006Cross-user operations are not allowed.16000008The crowdtesting application expires.16000011The context does not exist.16000012The application is controlled.16000013The application is controlled by EDM.16000050Internal error.16200001The caller has been released. 错误码详细介绍请参考元本领子体系错误码
示例:
- import UIAbility from '@ohos.app.ability.UIAbility';
- import Want from '@ohos.app.ability.Want';
- import { BusinessError } from '@ohos.base';
- export default class EntryAbility extends UIAbility {
- onForeground() {
- let want: Want = {
- deviceId: '',
- bundleName: 'com.example.myapplication',
- abilityName: 'ServiceExtensionAbility'
- };
- let accountId = 100;
- try {
- this.context.startServiceExtensionAbilityWithAccount(want, accountId)
- .then(() => {
- // 执行正常业务
- console.info('startServiceExtensionAbilityWithAccount succeed');
- })
- .catch((err: BusinessError) => {
- // 处理业务逻辑错误
- console.error(`startServiceExtensionAbilityWithAccount failed, code is ${err.code}, message is ${err.message}`);
- });
- } catch (err) {
- // 处理入参错误异常
- let code = (err as BusinessError).code;
- let message = (err as BusinessError).message;
- console.error(`startServiceExtensionAbilityWithAccount failed, code is ${code}, message is ${message}`);
- }
- }
- }
复制代码 UIAbilityContext.stopServiceExtensionAbility
stopServiceExtensionAbility(want: Want, callback: AsyncCallback<void>): void
停止同一应用步伐内的服务(callback情势)。
体系本领:SystemCapability.Ability.AbilityRuntime.Core
体系API: 此接口为体系接口,三方应用不支持调用。
参数:
参数名类型必填说明wantWant是停止ServiceExtensionAbility的want信息。callbackAsyncCallback<void>是停止ServiceExtensionAbility的回调函数。 错误码:
错误码ID错误信息16000001The specified ability does not exist.16000002Incorrect ability type.16000004Can not start invisible component.16000005The specified process does not have the permission.16000006Cross-user operations are not allowed.16000011The context does not exist.16000012The application is controlled.16000013The application is controlled by EDM.16000050Internal error.16200001The caller has been released. 错误码详细介绍请参考元本领子体系错误码
示例:
- import UIAbility from '@ohos.app.ability.UIAbility';
- import Want from '@ohos.app.ability.Want';
- import { BusinessError } from '@ohos.base';
- export default class EntryAbility extends UIAbility {
- onForeground() {
- let want: Want = {
- deviceId: '',
- bundleName: 'com.example.myapplication',
- abilityName: 'ServiceExtensionAbility'
- };
- try {
- this.context.stopServiceExtensionAbility(want, (err: BusinessError) => {
- if (err.code) {
- // 处理业务逻辑错误
- console.error(`stopServiceExtensionAbility failed, code is ${err.code}, message is ${err.message}`);
- return;
- }
- // 执行正常业务
- console.info('stopServiceExtensionAbility succeed');
- });
- } catch (err) {
- // 处理入参错误异常
- let code = (err as BusinessError).code;
- let message = (err as BusinessError).message;
- console.error(`stopServiceExtensionAbility failed, code is ${code}, message is ${message}`);
- }
- }
- }
复制代码 UIAbilityContext.stopServiceExtensionAbility
stopServiceExtensionAbility(want: Want): Promise<void>
停止同一应用步伐内的服务(Promise情势)。
体系本领:SystemCapability.Ability.AbilityRuntime.Core
体系API: 此接口为体系接口,三方应用不支持调用。
参数:
参数名类型必填说明wantWant是停止ServiceExtensionAbility的want信息。 错误码:
错误码ID错误信息16000001The specified ability does not exist.16000002Incorrect ability type.16000004Can not start invisible component.16000005The specified process does not have the permission.16000006Cross-user operations are not allowed.16000011The context does not exist.16000050Internal error.16200001The caller has been released. 错误码详细介绍请参考元本领子体系错误码
示例:
- import UIAbility from '@ohos.app.ability.UIAbility';
- import Want from '@ohos.app.ability.Want';
- import { BusinessError } from '@ohos.base';
- export default class EntryAbility extends UIAbility {
- onForeground() {
- let want: Want = {
- deviceId: '',
- bundleName: 'com.example.myapplication',
- abilityName: 'ServiceExtensionAbility'
- };
- try {
- this.context.stopServiceExtensionAbility(want)
- .then(() => {
- // 执行正常业务
- console.info('stopServiceExtensionAbility succeed');
- })
- .catch((err: BusinessError) => {
- // 处理业务逻辑错误
- console.error(`stopServiceExtensionAbility failed, code is ${err.code}, message is ${err.message}`);
- });
- } catch (err) {
- // 处理入参错误异常
- let code = (err as BusinessError).code;
- let message = (err as BusinessError).message;
- console.error(`stopServiceExtensionAbility failed, code is ${code}, message is ${message}`);
- }
- }
- }
复制代码 UIAbilityContext.stopServiceExtensionAbilityWithAccount
stopServiceExtensionAbilityWithAccount(want: Want, accountId: number, callback: AsyncCallback<void>): void
停止同一应用步伐内指定账户的服务(callback情势)。
说明:
当accountId为当前用户时,不需要校验该权限。
需要权限: ohos.permission.INTERACT_ACROSS_LOCAL_ACCOUNTS
体系本领:SystemCapability.Ability.AbilityRuntime.Core
体系API: 此接口为体系接口,三方应用不支持调用。
参数:
参数名类型必填说明wantWant是停止ServiceExtensionAbility的want信息。accountIdnumber是体系帐号的帐号ID,详情参考getCreatedOsAccountsCount。callbackAsyncCallback<void>是停止ServiceExtensionAbility的回调函数。 错误码:
错误码ID错误信息16000001The specified ability does not exist.16000002Incorrect ability type.16000004Can not start invisible component.16000005The specified process does not have the permission.16000006Cross-user operations are not allowed.16000011The context does not exist.16000050Internal error.16200001The caller has been released. 错误码详细介绍请参考元本领子体系错误码
示例:
- import UIAbility from '@ohos.app.ability.UIAbility';
- import Want from '@ohos.app.ability.Want';
- import { BusinessError } from '@ohos.base';
- export default class EntryAbility extends UIAbility {
- onForeground() {
- let want: Want = {
- deviceId: '',
- bundleName: 'com.example.myapplication',
- abilityName: 'ServiceExtensionAbility'
- };
- let accountId = 100;
- try {
- this.context.stopServiceExtensionAbilityWithAccount(want, accountId, (err: BusinessError) => {
- if (err.code) {
- // 处理业务逻辑错误
- console.error(`stopServiceExtensionAbilityWithAccount failed, code is ${err.code}, message is ${err.message}`);
- return;
- }
- // 执行正常业务
- console.info('stopServiceExtensionAbilityWithAccount succeed');
- });
- } catch (err) {
- // 处理入参错误异常
- let code = (err as BusinessError).code;
- let message = (err as BusinessError).message;
- console.error(`stopServiceExtensionAbilityWithAccount failed, code is ${code}, message is ${message}`);
- }
- }
- }
复制代码 UIAbilityContext.stopServiceExtensionAbilityWithAccount
stopServiceExtensionAbilityWithAccount(want: Want, accountId: number): Promise<void>
停止同一应用步伐内指定账户的服务(Promise情势)。
说明:
当accountId为当前用户时,不需要校验该权限。
需要权限: ohos.permission.INTERACT_ACROSS_LOCAL_ACCOUNTS
体系本领:SystemCapability.Ability.AbilityRuntime.Core
体系API: 此接口为体系接口,三方应用不支持调用。
参数:
参数名类型必填说明wantWant是停止ServiceExtensionAbility的want信息。accountIdnumber是体系帐号的帐号ID,详情参考getCreatedOsAccountsCount。 错误码:
错误码ID错误信息16000001The specified ability does not exist.16000002Incorrect ability type.16000004Can not start invisible component.16000005The specified process does not have the permission.16000006Cross-user operations are not allowed.16000011The context does not exist.16000050Internal error.16200001The caller has been released. 错误码详细介绍请参考元本领子体系错误码
示例:
- import UIAbility from '@ohos.app.ability.UIAbility';
- import Want from '@ohos.app.ability.Want';
- import { BusinessError } from '@ohos.base';
- export default class EntryAbility extends UIAbility {
- onForeground() {
- let want: Want = {
- deviceId: '',
- bundleName: 'com.example.myapplication',
- abilityName: 'ServiceExtensionAbility'
- };
- let accountId = 100;
- try {
- this.context.stopServiceExtensionAbilityWithAccount(want, accountId)
- .then(() => {
- // 执行正常业务
- console.info('stopServiceExtensionAbilityWithAccount succeed');
- })
- .catch((err: BusinessError) => {
- // 处理业务逻辑错误
- console.error(`stopServiceExtensionAbilityWithAccount failed, code is ${err.code}, message is ${err.message}`);
- });
- } catch (err) {
- // 处理入参错误异常
- let code = (err as BusinessError).code;
- let message = (err as BusinessError).message;
- console.error(`stopServiceExtensionAbilityWithAccount failed, code is ${code}, message is ${message}`);
- }
- }
- }
复制代码 UIAbilityContext.terminateSelf
terminateSelf(callback: AsyncCallback<void>): void
停止Ability自身(callback情势)。
体系本领:SystemCapability.Ability.AbilityRuntime.Core
参数:
参数名类型必填说明callbackAsyncCallback<void>是停止Ability自身的回调函数。 错误码:
错误码ID错误信息16000001The specified ability does not exist.16000004Can not start invisible component.16000005The specified process does not have the permission.16000009An ability cannot be started or stopped in Wukong mode.16000011The context does not exist.16000050Internal error. 错误码详细介绍请参考元本领子体系错误码
示例:
- import UIAbility from '@ohos.app.ability.UIAbility';
- import { BusinessError } from '@ohos.base';
- export default class EntryAbility extends UIAbility {
- onForeground() {
- try {
- this.context.terminateSelf((err: BusinessError) => {
- if (err.code) {
- // 处理业务逻辑错误
- console.error(`terminateSelf failed, code is ${err.code}, message is ${err.message}`);
- return;
- }
- // 执行正常业务
- console.info('terminateSelf succeed');
- });
- } catch (err) {
- // 捕获同步的参数错误
- let code = (err as BusinessError).code;
- let message = (err as BusinessError).message;
- console.error(`terminateSelf failed, code is ${code}, message is ${message}`);
- }
- }
- }
复制代码 UIAbilityContext.terminateSelf
terminateSelf(): Promise<void>
停止Ability自身(promise情势)。
体系本领:SystemCapability.Ability.AbilityRuntime.Core
返回值:
类型说明Promise<void>停止Ability自身的回调函数。 错误码:
错误码ID错误信息16000001The specified ability does not exist.16000004Can not start invisible component.16000005The specified process does not have the permission.16000009An ability cannot be started or stopped in Wukong mode.16000011The context does not exist.16000050Internal error. 错误码详细介绍请参考元本领子体系错误码
示例:
- import UIAbility from '@ohos.app.ability.UIAbility';
- import { BusinessError } from '@ohos.base';
- export default class EntryAbility extends UIAbility {
- onForeground() {
- try {
- this.context.terminateSelf()
- .then(() => {
- // 执行正常业务
- console.info('terminateSelf succeed');
- })
- .catch((err: BusinessError) => {
- // 处理业务逻辑错误
- console.error(`terminateSelf failed, code is ${err.code}, message is ${err.message}`);
- });
- } catch (err) {
- // 捕获同步的参数错误
- let code = (err as BusinessError).code;
- let message = (err as BusinessError).message;
- console.error(`terminateSelf failed, code is ${code}, message is ${message}`);
- }
- }
- }
复制代码 UIAbilityContext.terminateSelfWithResult
terminateSelfWithResult(parameter: AbilityResult, callback: AsyncCallback<void>): void
停止当前的Ability。如果该Ability是通过调用startAbilityForResult接口被拉起的,调用terminateSelfWithResult接口时会将效果返回给调用者,如果该Ability不是通过调用startAbilityForResult接口被拉起的,调用terminateSelfWithResult接口时不会有效果返回给调用者(callback情势)。
体系本领:SystemCapability.Ability.AbilityRuntime.Core
参数:
参数名类型必填说明parameterAbilityResult是返回给调用startAbilityForResult 接口调用方的相关信息。callbackAsyncCallback<void>是callback情势返回停止效果。 错误码:
错误码ID错误信息16000001The specified ability does not exist.16000004Can not start invisible component.16000005The specified process does not have the permission.16000009An ability cannot be started or stopped in Wukong mode.16000011The context does not exist.16000050Internal error. 错误码详细介绍请参考元本领子体系错误码
示例:
- import UIAbility from '@ohos.app.ability.UIAbility';
- import common from '@ohos.app.ability.common';
- import Want from '@ohos.app.ability.Want';
- import { BusinessError } from '@ohos.base';
- export default class EntryAbility extends UIAbility {
- onForeground() {
- let want: Want = {
- bundleName: 'com.example.myapplication',
- abilityName: 'EntryAbility'
- };
- let resultCode = 100;
- // 返回给接口调用方AbilityResult信息
- let abilityResult: common.AbilityResult = {
- want,
- resultCode
- };
- try {
- this.context.terminateSelfWithResult(abilityResult, (err: BusinessError) => {
- if (err.code) {
- // 处理业务逻辑错误
- console.error(`terminateSelfWithResult failed, code is ${err.code}, message is ${err.message}`);
- return;
- }
- // 执行正常业务
- console.info('terminateSelfWithResult succeed');
- });
- } catch (err) {
- // 处理入参错误异常
- let code = (err as BusinessError).code;
- let message = (err as BusinessError).message;
- console.error(`terminateSelfWithResult failed, code is ${code}, message is ${message}`);
- }
- }
- }
复制代码 UIAbilityContext.terminateSelfWithResult
terminateSelfWithResult(parameter: AbilityResult): Promise<void>
停止当前的Ability。如果该Ability是通过调用startAbilityForResult接口被拉起的,调用terminateSelfWithResult接口时会将效果返回给调用者,如果该Ability不是通过调用startAbilityForResult接口被拉起的,调用terminateSelfWithResult接口时不会有效果返回给调用者(promise情势)。
体系本领:SystemCapability.Ability.AbilityRuntime.Core
参数:
参数名类型必填说明parameterAbilityResult是返回给startAbilityForResult 调用方的信息。 返回值:
类型说明Promise<void>promise情势返回停止效果。 错误码:
错误码ID错误信息16000001The specified ability does not exist.16000004Can not start invisible component.16000005The specified process does not have the permission.16000009An ability cannot be started or stopped in Wukong mode.16000011The context does not exist.16000050Internal error. 错误码详细介绍请参考元本领子体系错误码
示例:
- import UIAbility from '@ohos.app.ability.UIAbility';
- import common from '@ohos.app.ability.common';
- import Want from '@ohos.app.ability.Want';
- import { BusinessError } from '@ohos.base';
- export default class EntryAbility extends UIAbility {
- onForeground() {
- let want: Want = {
- bundleName: 'com.example.myapplication',
- abilityName: 'EntryAbility'
- };
- let resultCode = 100;
- // 返回给接口调用方AbilityResult信息
- let abilityResult: : common.AbilityResult = {
- want,
- resultCode
- };
- try {
- this.context.terminateSelfWithResult(abilityResult)
- .then(() => {
- // 执行正常业务
- console.info('terminateSelfWithResult succeed');
- })
- .catch((err: BusinessError) => {
- // 处理业务逻辑错误
- console.error(`terminateSelfWithResult failed, code is ${err.code}, message is ${err.message}`);
- });
- } catch (err) {
- // 处理入参错误异常
- let code = (err as BusinessError).code;
- let message = (err as BusinessError).message;
- console.error(`terminateSelfWithResult failed, code is ${code}, message is ${message}`);
- }
- }
- }
复制代码 UIAbilityContext.connectServiceExtensionAbility
connectServiceExtensionAbility(want: Want, options: ConnectOptions): number
将当前Ability毗连到一个使用AbilityInfo.AbilityType.SERVICE模板的Ability。
体系本领:SystemCapability.Ability.AbilityRuntime.Core
参数:
参数名类型必填说明wantWant是毗连ServiceExtensionAbility的want信息。optionsConnectOptions是与ServiceExtensionAbility创建毗连后回调函数的实例。 返回值:
类型说明number返回Ability毗连的效果code。 错误码:
错误码ID错误信息16000001The specified ability does not exist.16000002Incorrect ability type.16000004Can not start invisible component.16000005The specified process does not have the permission.16000006Cross-user operations are not allowed.16000008The crowdtesting application expires.16000053The ability is not on the top of the UI.16000055Installation-free timed out.16000011The context does not exist.16000050Internal error. 错误码详细介绍请参考元本领子体系错误码
示例:
- import UIAbility from '@ohos.app.ability.UIAbility';
- import common from '@ohos.app.ability.common';
- import Want from '@ohos.app.ability.Want';
- import { BusinessError } from '@ohos.base';
- import rpc from '@ohos.rpc';
- export default class EntryAbility extends UIAbility {
- onForeground() {
- let want: Want = {
- deviceId: '',
- bundleName: 'com.example.myapplication',
- abilityName: 'ServiceExtensionAbility'
- };
- let commRemote: rpc.IRemoteObject;
- let options: common.ConnectOptions = {
- onConnect(elementName, remote) {
- commRemote = remote;
- console.info('onConnect...')
- },
- onDisconnect(elementName) {
- console.info('onDisconnect...')
- },
- onFailed(code) {
- console.info('onFailed...')
- }
- };
- let connection: number;
- try {
- connection = this.context.connectServiceExtensionAbility(want, options);
- } catch (err) {
- // 处理入参错误异常
- let code = (err as BusinessError).code;
- let message = (err as BusinessError).message;
- console.error(`connectServiceExtensionAbility failed, code is ${code}, message is ${message}`);
- }
- }
- }
复制代码 UIAbilityContext.connectServiceExtensionAbilityWithAccount
connectServiceExtensionAbilityWithAccount(want: Want, accountId: number, options: ConnectOptions): number
将当前Ability毗连到一个使用AbilityInfo.AbilityType.SERVICE模板的指定account的Ability。
说明:
当accountId为当前用户时,不需要校验该权限。
需要权限: ohos.permission.INTERACT_ACROSS_LOCAL_ACCOUNTS
体系本领:SystemCapability.Ability.AbilityRuntime.Core
体系API: 此接口为体系接口,三方应用不支持调用。
参数:
参数名类型必填说明wantWant是启动Ability的want信息。accountIdnumber是体系帐号的帐号ID,详情参考getCreatedOsAccountsCount。optionsConnectOptions是与ServiceExtensionAbility创建毗连后回调函数的实例。。 返回值:
类型说明number返回Ability毗连的效果code。 错误码:
错误码ID错误信息16000001The specified ability does not exist.16000002Incorrect ability type.16000004Can not start invisible component.16000005The specified process does not have the permission.16000006Cross-user operations are not allowed.16000008The crowdtesting application expires.16000053The ability is not on the top of the UI.16000055Installation-free timed out.16000011The context does not exist.16000050Internal error. 错误码详细介绍请参考元本领子体系错误码
示例:
- import UIAbility from '@ohos.app.ability.UIAbility';
- import common from '@ohos.app.ability.common';
- import Want from '@ohos.app.ability.Want';
- import { BusinessError } from '@ohos.base';
- import rpc from '@ohos.rpc';
- export default class EntryAbility extends UIAbility {
- onForeground() {
- let want: Want = {
- deviceId: '',
- bundleName: 'com.example.myapplication',
- abilityName: 'ServiceExtensionAbility'
- };
- let accountId = 100;
- let commRemote: rpc.IRemoteObject;
- let options: common.ConnectOptions = {
- onConnect(elementName, remote) {
- commRemote = remote;
- console.info('onConnect...')
- },
- onDisconnect(elementName) {
- console.info('onDisconnect...')
- },
- onFailed(code) {
- console.info('onFailed...')
- }
- };
- let connection: number;
- try {
- connection = this.context.connectServiceExtensionAbilityWithAccount(want, accountId, options);
- } catch (err) {
- // 处理入参错误异常
- let code = (err as BusinessError).code;
- let message = (err as BusinessError).message;
- console.error(`connectServiceExtensionAbility failed, code is ${code}, message is ${message}`);
- }
- }
- }
复制代码 UIAbilityContext.disconnectServiceExtensionAbility
disconnectServiceExtensionAbility(connection: number): Promise<void>
断开与ServiceExtensionAbility的毗连,断开毗连之后需要将毗连成功时返回的remote对象置空(promise情势)。
体系本领:SystemCapability.Ability.AbilityRuntime.Core
参数:
参数名类型必填说明connectionnumber是毗连的ServiceExtensionAbility的数字代码,即connectServiceExtensionAbility返回的connectionId。 返回值:
类型说明Promise<void>返回实行效果。 错误码:
错误码ID错误信息16000011The context does not exist.16000050Internal error. 错误码详细介绍请参考元本领子体系错误码
示例:
- import UIAbility from '@ohos.app.ability.UIAbility';
- import { BusinessError } from '@ohos.base';
- import rpc from '@ohos.rpc';
- export default class EntryAbility extends UIAbility {
- onForeground() {
- // connection为connectServiceExtensionAbility中的返回值
- let connection = 1;
- let commRemote: rpc.IRemoteObject | null;
- try {
- this.context.disconnectServiceExtensionAbility(connection).then(() => {
- commRemote = null;
- // 执行正常业务
- console.info('disconnectServiceExtensionAbility succeed');
- }).catch((err: BusinessError) => {
- // 处理业务逻辑错误
- console.error(`disconnectServiceExtensionAbility failed, code is ${err.code}, message is ${err.message}`);
- })
- } catch (err) {
- commRemote = null;
- // 处理入参错误异常
- let code = (err as BusinessError).code;
- let message = (err as BusinessError).message;
- console.error(`disconnectServiceExtensionAbility failed, code is ${code}, message is ${message}`);
- }
- }
- }
复制代码 UIAbilityContext.disconnectServiceExtensionAbility
disconnectServiceExtensionAbility(connection: number, callback: AsyncCallback<void>): void
断开与ServiceExtensionAbility的毗连,断开毗连之后需要将毗连成功时返回的remote对象置空(callback情势)。
体系本领:SystemCapability.Ability.AbilityRuntime.Core
参数:
参数名类型必填说明connectionnumber是毗连的ServiceExtensionAbility的数字代码,即connectServiceExtensionAbility返回的connectionId。callbackAsyncCallback<void>是callback情势返回断开毗连的效果。 错误码:
错误码ID错误信息16000011The context does not exist.16000050Internal error. 错误码详细介绍请参考元本领子体系错误码
示例:
- import UIAbility from '@ohos.app.ability.UIAbility';
- import { BusinessError } from '@ohos.base';
- import rpc from '@ohos.rpc';
- export default class EntryAbility extends UIAbility {
- onForeground() {
- // connection为connectServiceExtensionAbility中的返回值
- let connection = 1;
- let commRemote: rpc.IRemoteObject | null;
- try {
- this.context.disconnectServiceExtensionAbility(connection, (err: BusinessError) => {
- commRemote = null;
- if (err.code) {
- // 处理业务逻辑错误
- console.error(`disconnectServiceExtensionAbility failed, code is ${err.code}, message is ${err.message}`);
- return;
- }
- // 执行正常业务
- console.info('disconnectServiceExtensionAbility succeed');
- });
- } catch (err) {
- commRemote = null;
- // 处理入参错误异常
- let code = (err as BusinessError).code;
- let message = (err as BusinessError).message;
- console.error(`disconnectServiceExtensionAbility failed, code is ${code}, message is ${message}`);
- }
- }
- }
复制代码 UIAbilityContext.startAbilityByCall
startAbilityByCall(want: Want): Promise<Caller>
启动指定Ability至前台或后台,同时获取其Caller通信接口,调用方可使用Caller与被启动的Ability进行通信。
使用规则:
- 调用方应用位于后台时,使用该接口启动Ability需申请权限。ohos.permission.START_ABILITIES_FROM_BACKGROUND
- 跨应用场景下,目标Ability的exported属性若设置为false,调用方应用需申请权限。ohos.permission.START_INVISIBLE_ABILITY
- 同装备与跨装备场景下,该接口的使用规则存在差异,详见:组件启动规则(Stage模子)。
需要权限: ohos.permission.ABILITY_BACKGROUND_COMMUNICATION
体系本领:SystemCapability.Ability.AbilityRuntime.Core
参数:
参数名类型必填说明wantWant是传入需要启动的Ability的信息,包含abilityName、moduleName、bundleName、deviceId(可选)、parameters(可选),此中deviceId缺省或为空表示启动本地Ability,parameters缺省或为空表示后台启动Ability。 返回值:
类型说明Promise<Caller>获取要通讯的caller对象。 错误码:
错误码ID错误信息16000001The specified ability does not exist.16000002Incorrect ability type.16000004Can not start invisible component.16000005The specified process does not have the permission.16000006Cross-user operations are not allowed.16000008The crowdtesting application expires.16000011The context does not exist.16000012The application is controlled.16000013The application is controlled by EDM.16000050Internal error.16200001The caller has been released. 错误码详细介绍请参考元本领子体系错误码
示例:
后台启动:
- import UIAbility from '@ohos.app.ability.UIAbility';
- import { Caller } from '@ohos.app.ability.UIAbility';
- import Want from '@ohos.app.ability.Want';
- import { BusinessError } from '@ohos.base';
- export default class EntryAbility extends UIAbility {
- onForeground() {
- let caller: Caller;
- // 后台启动Ability,不配置parameters
- let wantBackground: Want = {
- bundleName: 'com.example.myapplication',
- moduleName: 'entry',
- abilityName: 'EntryAbility',
- deviceId: ''
- };
- try {
- this.context.startAbilityByCall(wantBackground)
- .then((obj: Caller) => {
- // 执行正常业务
- caller = obj;
- console.info('startAbilityByCall succeed');
- }).catch((err: BusinessError) => {
- // 处理业务逻辑错误
- console.error(`startAbilityByCall failed, code is ${err.code}, message is ${err.message}`);
- });
- } catch (err) {
- // 处理入参错误异常
- let code = (err as BusinessError).code;
- let message = (err as BusinessError).message;
- console.error(`startAbilityByCall failed, code is ${code}, message is ${message}`);
- }
- }
- }
复制代码 前台启动:
- import UIAbility from '@ohos.app.ability.UIAbility';
- import { Caller } from '@ohos.app.ability.UIAbility';
- import Want from '@ohos.app.ability.Want';
- import { BusinessError } from '@ohos.base';
- export default class EntryAbility extends UIAbility {
- onForeground() {
- let caller: Caller;
- // 前台启动Ability,将parameters中的'ohos.aafwk.param.callAbilityToForeground'配置为true
- let wantForeground: Want = {
- bundleName: 'com.example.myapplication',
- moduleName: 'entry',
- abilityName: 'EntryAbility',
- deviceId: '',
- parameters: {
- 'ohos.aafwk.param.callAbilityToForeground': true
- }
- };
- try {
- this.context.startAbilityByCall(wantForeground)
- .then((obj: Caller) => {
- // 执行正常业务
- caller = obj;
- console.info('startAbilityByCall succeed');
- }).catch((err: BusinessError) => {
- // 处理业务逻辑错误
- console.error(`startAbilityByCall failed, code is ${err.code}, message is ${err.message}`);
- });
- } catch (err) {
- // 处理入参错误异常
- let code = (err as BusinessError).code;
- let message = (err as BusinessError).message;
- console.error(`startAbilityByCall failed, code is ${code}, message is ${message}`);
- }
- }
- }
复制代码 UIAbilityContext.startAbilityWithAccount
startAbilityWithAccount(want: Want, accountId: number, callback: AsyncCallback<void>): void
根据want和accountId启动Ability(callback情势)。
使用规则:
- 调用方应用位于后台时,使用该接口启动Ability需申请权限。ohos.permission.START_ABILITIES_FROM_BACKGROUND
- 跨应用场景下,目标Ability的exported属性若设置为false,调用方应用需申请权限。ohos.permission.START_INVISIBLE_ABILITY
- 组件启动规则详见:组件启动规则(Stage模子)。
说明:
当accountId为当前用户时,不需要校验该权限。
需要权限: ohos.permission.INTERACT_ACROSS_LOCAL_ACCOUNTS
体系本领:SystemCapability.Ability.AbilityRuntime.Core
体系API: 此接口为体系接口,三方应用不支持调用。
参数:
参数名类型必填说明wantWant是启动Ability的want信息。accountIdnumber是体系帐号的帐号ID,详情参考getCreatedOsAccountsCount。callbackAsyncCallback<void>是启动Ability的回调函数。 错误码:
错误码ID错误信息16000001The specified ability does not exist.16000002Incorrect ability type.16000004Can not start invisible component.16000005The specified process does not have the permission.16000006Cross-user operations are not allowed.16000008The crowdtesting application expires.16000009An ability cannot be started or stopped in Wukong mode.16000010The call with the continuation flag is forbidden.16000011The context does not exist.16000012The application is controlled.16000013The application is controlled by EDM.16000050Internal error.16000053The ability is not on the top of the UI.16000055Installation-free timed out.16200001The caller has been released. 错误码详细介绍请参考元本领子体系错误码
示例:
- import UIAbility from '@ohos.app.ability.UIAbility';
- import Want from '@ohos.app.ability.Want';
- import { BusinessError } from '@ohos.base';
- export default class EntryAbility extends UIAbility {
- onForeground() {
- let want: Want = {
- deviceId: '',
- bundleName: 'com.example.myapplication',
- abilityName: 'EntryAbility'
- };
- let accountId = 100;
- try {
- this.context.startAbilityWithAccount(want, accountId, (err: BusinessError) => {
- if (err.code) {
- // 处理业务逻辑错误
- console.error(`startAbilityWithAccount failed, code is ${err.code}, message is ${err.message}`);
- return;
- }
- // 执行正常业务
- console.info('startAbilityWithAccount succeed');
- });
- } catch (err) {
- // 处理入参错误异常
- let code = (err as BusinessError).code;
- let message = (err as BusinessError).message;
- console.error(`startAbilityWithAccount failed, code is ${code}, message is ${message}`);
- }
- }
- }
复制代码 UIAbilityContext.startAbilityWithAccount
startAbilityWithAccount(want: Want, accountId: number, options: StartOptions, callback: AsyncCallback<void>): void
根据want、accountId及startOptions启动Ability(callback情势)。
使用规则:
- 调用方应用位于后台时,使用该接口启动Ability需申请权限。ohos.permission.START_ABILITIES_FROM_BACKGROUND
- 跨应用场景下,目标Ability的exported属性若设置为false,调用方应用需申请权限。ohos.permission.START_INVISIBLE_ABILITY
- 组件启动规则详见:组件启动规则(Stage模子)。
说明:
当accountId为当前用户时,不需要校验该权限。
需要权限: ohos.permission.INTERACT_ACROSS_LOCAL_ACCOUNTS
体系本领:SystemCapability.Ability.AbilityRuntime.Core
体系API: 此接口为体系接口,三方应用不支持调用。
参数:
参数名类型必填说明wantWant是启动Ability的want信息。accountIdnumber是体系帐号的帐号ID,详情参考getCreatedOsAccountsCount。optionsStartOptions是启动Ability所携带的参数。callbackAsyncCallback<void>是启动Ability的回调函数。 错误码:
错误码ID错误信息16000001The specified ability does not exist.16000002Incorrect ability type.16000004Can not start invisible component.16000005The specified process does not have the permission.16000006Cross-user operations are not allowed.16000008The crowdtesting application expires.16000009An ability cannot be started or stopped in Wukong mode.16000010The call with the continuation flag is forbidden.16000011The context does not exist.16000012The application is controlled.16000013The application is controlled by EDM.16000050Internal error.16000053The ability is not on the top of the UI.16000055Installation-free timed out.16200001The caller has been released. 错误码详细介绍请参考元本领子体系错误码
示例:
- import UIAbility from '@ohos.app.ability.UIAbility';
- import Want from '@ohos.app.ability.Want';
- import StartOptions from '@ohos.app.ability.StartOptions';
- import { BusinessError } from '@ohos.base';
- export default class EntryAbility extends UIAbility {
- onForeground() {
- let want: Want = {
- deviceId: '',
- bundleName: 'com.example.myapplication',
- abilityName: 'EntryAbility'
- };
- let accountId = 100;
- let options: StartOptions = {
- windowMode: 0
- };
- try {
- this.context.startAbilityWithAccount(want, accountId, options, (err: BusinessError) => {
- if (err.code) {
- // 处理业务逻辑错误
- console.error(`startAbilityWithAccount failed, code is ${err.code}, message is ${err.message}`);
- return;
- }
- // 执行正常业务
- console.info('startAbilityWithAccount succeed');
- });
- } catch (err) {
- // 处理入参错误异常
- let code = (err as BusinessError).code;
- let message = (err as BusinessError).message;
- console.error(`startAbilityWithAccount failed, code is ${code}, message is ${message}`);
- }
- }
- }
复制代码 UIAbilityContext.startAbilityWithAccount
startAbilityWithAccount(want: Want, accountId: number, options?: StartOptions): Promise<void>
根据want、accountId和startOptions启动Ability(Promise情势)。
使用规则:
- 调用方应用位于后台时,使用该接口启动Ability需申请权限。ohos.permission.START_ABILITIES_FROM_BACKGROUND
- 跨应用场景下,目标Ability的exported属性若设置为false,调用方应用需申请权限。ohos.permission.START_INVISIBLE_ABILITY
- 组件启动规则详见:组件启动规则(Stage模子)。
说明:
当accountId为当前用户时,不需要校验该权限。
需要权限: ohos.permission.INTERACT_ACROSS_LOCAL_ACCOUNTS
体系本领:SystemCapability.Ability.AbilityRuntime.Core
体系API: 此接口为体系接口,三方应用不支持调用。
参数:
参数名类型必填说明wantWant是启动Ability的want信息。accountIdnumber是体系帐号的帐号ID,详情参考getCreatedOsAccountsCount。optionsStartOptions否启动Ability所携带的参数。 错误码:
错误码ID错误信息16000001The specified ability does not exist.16000002Incorrect ability type.16000004Can not start invisible component.16000005The specified process does not have the permission.16000006Cross-user operations are not allowed.16000008The crowdtesting application expires.16000009An ability cannot be started or stopped in Wukong mode.16000010The call with the continuation flag is forbidden.16000011The context does not exist.16000012The application is controlled.16000013The application is controlled by EDM.16000050Internal error.16000053The ability is not on the top of the UI.16000055Installation-free timed out.16200001The caller has been released. 错误码详细介绍请参考元本领子体系错误码
示例:
- import UIAbility from '@ohos.app.ability.UIAbility';
- import Want from '@ohos.app.ability.Want';
- import StartOptions from '@ohos.app.ability.StartOptions';
- import { BusinessError } from '@ohos.base';
- export default class EntryAbility extends UIAbility {
- onForeground() {
- let want: Want = {
- deviceId: '',
- bundleName: 'com.example.myapplication',
- abilityName: 'EntryAbility'
- };
- let accountId = 100;
- let options: StartOptions = {
- windowMode: 0
- };
- try {
- this.context.startAbilityWithAccount(want, accountId, options)
- .then(() => {
- // 执行正常业务
- console.info('startAbilityWithAccount succeed');
- })
- .catch((err: BusinessError) => {
- // 处理业务逻辑错误
- console.error(`startAbilityWithAccount failed, code is ${err.code}, message is ${err.message}`);
- });
- } catch (err) {
- // 处理入参错误异常
- let code = (err as BusinessError).code;
- let message = (err as BusinessError).message;
- console.error(`startAbilityWithAccount failed, code is ${code}, message is ${message}`);
- }
- }
- }
复制代码 UIAbilityContext.setMissionLabel
setMissionLabel(label: string, callback: AsyncCallback<void>): void
设置UIAbility在任务中显示的名称(callback情势)。
体系本领:SystemCapability.Ability.AbilityRuntime.Core
参数:
参数名类型必填说明labelstring是显示名称。callbackAsyncCallback<void>是回调函数,返回接口调用是否成功的效果。 错误码:
错误码ID错误信息16000011The context does not exist.16000050Internal error. 错误码详细介绍请参考元本领子体系错误码
示例:
- import UIAbility from '@ohos.app.ability.UIAbility';
- import { BusinessError } from '@ohos.base';
- export default class EntryAbility extends UIAbility {
- onCreate(want, launchParam) {
- this.context.setMissionLabel('test', (result: BusinessError) => {
- console.info(`setMissionLabel: ${JSON.stringify(result)}`);
- });
- }
- }
复制代码 UIAbilityContext.setMissionLabel
setMissionLabel(label: string): Promise<void>
设置UIAbility在任务中显示的名称(promise情势)。
体系本领:SystemCapability.Ability.AbilityRuntime.Core
参数:
参数名类型必填说明labelstring是显示名称。 返回值:
类型说明Promise<void>返回一个Promise,包含接口的效果。 错误码:
错误码ID错误信息16000011The context does not exist.16000050Internal error. 错误码详细介绍请参考元本领子体系错误码
示例:
- import UIAbility from '@ohos.app.ability.UIAbility';
- import { BusinessError } from '@ohos.base';
- export default class EntryAbility extends UIAbility {
- onCreate(want, launchParam) {
- this.context.setMissionLabel('test').then(() => {
- console.info('success');
- }).catch((err: BusinessError) => {
- let code = (err as BusinessError).code;
- let message = (err as BusinessError).message;
- console.error(`setMissionLabel failed, code is ${code}, message is ${message}`);
- });
- }
- }
复制代码 UIAbilityContext.setMissionIcon
setMissionIcon(icon: image.PixelMap, callback: AsyncCallback<void>): void
设置当前ability在任务中显示的图标, 图标巨细最大为600M(callback情势)。
体系本领:SystemCapability.Ability.AbilityRuntime.Core
体系API: 此接口为体系接口,三方应用不支持调用。
参数:
参数名类型必填说明iconimage.PixelMap是在最近的任务中显示的ability图标。callbackAsyncCallback<void>是指定的回调函数的效果。 错误码:
错误码ID错误信息16000011The context does not exist.16000050Internal error. 错误码详细介绍请参考元本领子体系错误码
示例:
- import UIAbility from '@ohos.app.ability.UIAbility';
- import { BusinessError } from '@ohos.base';
- import image from '@ohos.multimedia.image';
- export default class EntryAbility extends UIAbility {
- onForeground() {
- let imagePixelMap: image.PixelMap;
- let color = new ArrayBuffer(0);
- image.createPixelMap(color, {
- size: {
- height: 100,
- width: 100
- }
- }).then((data) => {
- imagePixelMap = data;
- this.context.setMissionIcon(imagePixelMap, (err: BusinessError) => {
- console.error(`setMissionLabel failed, code is ${err.code}, message is ${err.message}`);
- })
- })
- .catch((err: BusinessError) => {
- console.error(`createPixelMap failed, code is ${err.code}, message is ${err.message}`);
- });
- }
- }
复制代码 UIAbilityContext.setMissionIcon
setMissionIcon(icon: image.PixelMap): Promise<void>
设置当前ability在任务中显示的图标, 图标巨细最大为600M(promise情势)。
体系本领:SystemCapability.Ability.AbilityRuntime.Core
体系API: 此接口为体系接口,三方应用不支持调用。
参数:
参数名类型必填说明iconimage.PixelMap是在最近的任务中显示的ability图标。 返回值:
类型说明Promise<void>返回一个Promise,包含接口的效果。 错误码:
错误码ID错误信息16000011The context does not exist.16000050Internal error. 错误码详细介绍请参考元本领子体系错误码
示例:
- import UIAbility from '@ohos.app.ability.UIAbility';
- import { BusinessError } from '@ohos.base';
- import image from '@ohos.multimedia.image';
- export default class EntryAbility extends UIAbility {
- onForeground() {
- let imagePixelMap: image.PixelMap;
- let color = new ArrayBuffer(0);
- image.createPixelMap(color, {
- size: {
- height: 100,
- width: 100
- }
- }).then((data) => {
- imagePixelMap = data;
- this.context.setMissionIcon(imagePixelMap)
- .then(() => {
- console.info('setMissionIcon succeed');
- })
- .catch((err: BusinessError) => {
- console.error(`setMissionLabel failed, code is ${err.code}, message is ${err.message}`);
- });
- })
- .catch((err: BusinessError) => {
- console.error(`createPixelMap failed, code is ${err.code}, message is ${err.message}`);
- });
- }
- }
复制代码 UIAbilityContext.setMissionContinueState10+
setMissionContinueState(state: AbilityConstant.ContinueState, callback: AsyncCallback<void>): void
设置UIAbility任务中流转状态(callback情势)。
体系本领:SystemCapability.Ability.AbilityRuntime.Core
参数:
参数名类型必填说明stateAbilityConstant.ContinueState是流转状态。callbackAsyncCallback<void>是回调函数,返回接口调用是否成功的效果。 错误码:
错误码ID错误信息16000011The context does not exist.16000050Internal error. 错误码详细介绍请参考元本领子体系错误码
示例:
- import UIAbility from '@ohos.app.ability.UIAbility';
- import AbilityConstant from '@ohos.app.ability.AbilityConstant';
- import { BusinessError } from '@ohos.base';
- export default class EntryAbility extends UIAbility {
- onForeground() {
- this.context.setMissionContinueState(AbilityConstant.ContinueState.INACTIVE, (result: BusinessError) => {
- console.info(`setMissionContinueState: ${JSON.stringify(result)}`);
- });
- }
- }
复制代码 UIAbilityContext.setMissionContinueState10+
setMissionContinueState(state: AbilityConstant.ContinueState): Promise<void>
设置UIAbility任务中流转状态(promise情势)。
体系本领:SystemCapability.Ability.AbilityRuntime.Core
参数:
参数名类型必填说明stateAbilityConstant.ContinueState是流转状态。 返回值:
类型说明Promise<void>返回一个Promise,包含接口的效果。 错误码:
错误码ID错误信息16000011The context does not exist.16000050Internal error. 错误码详细介绍请参考元本领子体系错误码
示例:
- import UIAbility from '@ohos.app.ability.UIAbility';
- import AbilityConstant from '@ohos.app.ability.AbilityConstant';
- import { BusinessError } from '@ohos.base';
- export default class EntryAbility extends UIAbility {
- onForeground() {
- this.context.setMissionContinueState(AbilityConstant.ContinueState.INACTIVE).then(() => {
- console.info('success');
- }).catch((err: BusinessError) => {
- console.error(`setMissionContinueState failed, code is ${err.code}, message is ${err.message}`);
- });
- }
- }
复制代码 UIAbilityContext.restoreWindowStage
restoreWindowStage(localStorage: LocalStorage): void
规复UIAbility中的WindowStage数据。
体系本领:SystemCapability.Ability.AbilityRuntime.Core
参数:
参数名类型必填说明localStorageLocalStorage是用于规复window stage的存储数据。 错误码:
错误码ID错误信息16000011The context does not exist.16000050Internal error. 错误码详细介绍请参考元本领子体系错误码
示例:
- import UIAbility from '@ohos.app.ability.UIAbility';
- export default class EntryAbility extends UIAbility {
- onForeground() {
- let storage = new LocalStorage();
- this.context.restoreWindowStage(storage);
- }
- }
复制代码 UIAbilityContext.isTerminating
isTerminating(): boolean
查询UIAbility是否在terminating状态。
体系本领:SystemCapability.Ability.AbilityRuntime.Core
返回值:
类型说明booltrue:ability当前处于terminating状态;false:不处于terminating状态。 错误码:
错误码ID错误信息16000011The context does not exist. 错误码详细介绍请参考元本领子体系错误码
示例:
- import UIAbility from '@ohos.app.ability.UIAbility';
- export default class EntryAbility extends UIAbility {
- onForeground() {
- let isTerminating: boolean = this.context.isTerminating();
- console.info(`ability state is ${isTerminating}`);
- }
- }
复制代码 UIAbilityContext.requestDialogService
requestDialogService(want: Want, result: AsyncCallback<dialogRequest.RequestResult>): void
启动一个支持模态弹框的ServiceExtensionAbility。ServiceExtensionAbility被启动后,应用弹出模态弹框,通过调用setRequestResult接口返回效果给调用者。
使用规则:
- 调用方应用位于后台时,使用该接口启动Ability需申请权限。ohos.permission.START_ABILITIES_FROM_BACKGROUND
- 跨应用场景下,目标Ability的exported属性若设置为false,调用方应用需申请权限。ohos.permission.START_INVISIBLE_ABILITY
- 组件启动规则详见:组件启动规则(Stage模子)。
体系本领:SystemCapability.Ability.AbilityRuntime.Core
参数:
参数名类型必填说明wantWant是启动ServiceExtensionAbility的want信息。resultAsyncCallback<dialogRequest.RequestResult>是实行效果回调函数。 错误码:
错误码ID错误信息16000001The specified ability does not exist.16000002Incorrect ability type.16000004Can not start invisible component.16000005The specified process does not have the permission.16000006Cross-user operations are not allowed.16000008The crowdtesting application expires.16000009An ability cannot be started or stopped in Wukong mode.16000010The call with the continuation flag is forbidden.16000011The context does not exist.16000012The application is controlled.16000013The application is controlled by EDM.16000050Internal error.16000053The ability is not on the top of the UI.16000055Installation-free timed out.16200001The caller has been released. 错误码详细介绍请参考元本领子体系错误码
示例:
- import UIAbility from '@ohos.app.ability.UIAbility';
- import dialogRequest from '@ohos.app.ability.dialogRequest';
- import Want from '@ohos.app.ability.Want';
- import { BusinessError } from '@ohos.base';
- export default class EntryAbility extends UIAbility {
- onForeground() {
- let want: Want = {
- deviceId: '',
- bundleName: 'com.example.myapplication',
- abilityName: 'AuthAccountServiceExtension'
- };
- try {
- this.context.requestDialogService(want, (err: BusinessError, result: dialogRequest.RequestResult) => {
- if (err.code) {
- // 处理业务逻辑错误
- console.error(`requestDialogService failed, code is ${err.code}, message is ${err.message}`);
- return;
- }
- // 执行正常业务
- console.info(`requestDialogService succeed, result = ${JSON.stringify(result)}`);
- });
- } catch (err) {
- // 处理入参错误异常
- let code = (err as BusinessError).code;
- let message = (err as BusinessError).message;
- console.error(`requestDialogService failed, code is ${code}, message is ${message}`);
- }
- }
- }
复制代码 UIAbilityContext.requestDialogService
requestDialogService(want: Want): Promise<dialogRequest.RequestResult>
启动一个支持模态弹框的ServiceExtensionAbility。ServiceExtensionAbility被启动后,应用弹出模态弹框,通过调用setRequestResult接口返回效果给调用者(promise情势)。
使用规则:
- 调用方应用位于后台时,使用该接口启动Ability需申请权限。ohos.permission.START_ABILITIES_FROM_BACKGROUND
- 跨应用场景下,目标Ability的exported属性若设置为false,调用方应用需申请权限。ohos.permission.START_INVISIBLE_ABILITY
- 组件启动规则详见:组件启动规则(Stage模子)。
体系本领:SystemCapability.Ability.AbilityRuntime.Core
参数:
参数名类型必填说明wantWant是启动ServiceExtensionAbility的want信息。 返回值:
类型说明Promise<dialogRequest.RequestResult>Promise情势返回实行效果。 错误码:
错误码ID错误信息16000001The specified ability does not exist.16000002Incorrect ability type.16000004Can not start invisible component.16000005The specified process does not have the permission.16000006Cross-user operations are not allowed.16000008The crowdtesting application expires.16000009An ability cannot be started or stopped in Wukong mode.16000010The call with the continuation flag is forbidden.16000011The context does not exist.16000012The application is controlled.16000013The application is controlled by EDM.16000050Internal error.16000053The ability is not on the top of the UI.16000055Installation-free timed out.16200001The caller has been released. 错误码详细介绍请参考元本领子体系错误码
示例:
- import UIAbility from '@ohos.app.ability.UIAbility';
- import dialogRequest from '@ohos.app.ability.dialogRequest';
- import Want from '@ohos.app.ability.Want';
- import { BusinessError } from '@ohos.base';
- export default class EntryAbility extends UIAbility {
- onForeground() {
- let want: Want = {
- bundleName: 'com.example.myapplication',
- abilityName: 'AuthAccountServiceExtension'
- };
- try {
- this.context.requestDialogService(want)
- .then((result: dialogRequest.RequestResult) => {
- // 执行正常业务
- console.info(`requestDialogService succeed, result = ${JSON.stringify(result)}`);
- })
- .catch((err: BusinessError) => {
- // 处理业务逻辑错误
- console.error(`requestDialogService failed, code is ${err.code}, message is ${err.message}`);
- });
- } catch (err) {
- // 处理入参错误异常
- let code = (err as BusinessError).code;
- let message = (err as BusinessError).message;
- console.error(`requestDialogService failed, code is ${code}, message is ${message}`);
- }
- }
- }
复制代码 UIAbilityContext.startRecentAbility
startRecentAbility(want: Want, callback: AsyncCallback<void>): void
启动一个指定的Ability,如果这个Ability有多个实例,将拉起最近启动的谁人实例。启动效果以callback的情势返回开发者。
使用规则:
- 调用方应用位于后台时,使用该接口启动Ability需申请权限。ohos.permission.START_ABILITIES_FROM_BACKGROUND
- 跨应用场景下,目标Ability的exported属性若设置为false,调用方应用需申请权限。ohos.permission.START_INVISIBLE_ABILITY
- 组件启动规则详见:组件启动规则(Stage模子)。
体系本领:SystemCapability.Ability.AbilityRuntime.Core
体系API: 此接口为体系接口,三方应用不支持调用。
参数:
参数名类型必填说明wantWant是需要启动Ability的want信息。callbackAsyncCallback<void>是指定的回调函数的效果。 错误码:
以下错误码的详细介绍请参见元本领子体系错误码。
错误码ID错误信息16000001The specified ability does not exist.16000002Incorrect ability type.16000004Can not start invisible component.16000005The specified process does not have the permission.16000006Cross-user operations are not allowed.16000008The crowdtesting application expires.16000009An ability cannot be started or stopped in Wukong mode.16000010The call with the continuation flag is forbidden.16000011The context does not exist.16000012The application is controlled.16000013The application is controlled by EDM.16000050Internal error.16000053The ability is not on the top of the UI.16000055Installation-free timed out.16200001The caller has been released. 示例:
- import UIAbility from '@ohos.app.ability.UIAbility';
- import Want from '@ohos.app.ability.Want';
- import { BusinessError } from '@ohos.base';
- export default class EntryAbility extends UIAbility {
- onForeground() {
- let want: Want = {
- bundleName: 'com.example.myapplication',
- abilityName: 'EntryAbility'
- };
- try {
- this.context.startRecentAbility(want, (err: BusinessError) => {
- if (err.code) {
- // 处理业务逻辑错误
- console.error(`startRecentAbility failed, code is ${err.code}, message is ${err.message}`);
- return;
- }
- // 执行正常业务
- console.info('startRecentAbility succeed');
- });
- } catch (err) {
- // 处理入参错误异常
- let code = (err as BusinessError).code;
- let message = (err as BusinessError).message;
- console.error(`startRecentAbility failed, code is ${code}, message is ${message}`);
- }
- }
- }
复制代码 UIAbilityContext.startRecentAbility
startRecentAbility(want: Want, options: StartOptions, callback: AsyncCallback<void>): void
启动一个指定的Ability,如果这个Ability有多个实例,将拉起最近启动的谁人实例。启动效果以callback的情势返回开发者。 当开发者需要携带启动参数时可以选择此API。
使用规则:
- 调用方应用位于后台时,使用该接口启动Ability需申请权限。ohos.permission.START_ABILITIES_FROM_BACKGROUND
- 跨应用场景下,目标Ability的exported属性若设置为false,调用方应用需申请权限。ohos.permission.START_INVISIBLE_ABILITY
- 组件启动规则详见:组件启动规则(Stage模子)。
体系本领:SystemCapability.Ability.AbilityRuntime.Core
体系API: 此接口为体系接口,三方应用不支持调用。
参数:
参数名类型必填说明wantWant是需要启动Ability的want信息。optionsStartOptions是启动Ability所携带的参数。callbackAsyncCallback<void>是指定的回调函数的效果。 错误码:
以下错误码的详细介绍请参见元本领子体系错误码。
错误码ID错误信息16000001The specified ability does not exist.16000002Incorrect ability type.16000004Can not start invisible component.16000005The specified process does not have the permission.16000006Cross-user operations are not allowed.16000008The crowdtesting application expires.16000009An ability cannot be started or stopped in Wukong mode.16000010The call with the continuation flag is forbidden.16000011The context does not exist.16000012The application is controlled.16000013The application is controlled by EDM.16000050Internal error.16000053The ability is not on the top of the UI.16000055Installation-free timed out.16200001The caller has been released. 示例:
- import UIAbility from '@ohos.app.ability.UIAbility';
- import Want from '@ohos.app.ability.Want';
- import StartOptions from '@ohos.app.ability.StartOptions';
- import { BusinessError } from '@ohos.base';
- export default class EntryAbility extends UIAbility {
- onForeground() {
- let want: Want = {
- deviceId: '',
- bundleName: 'com.example.myapplication',
- abilityName: 'EntryAbility'
- };
- let options: StartOptions = {
- windowMode: 0
- };
- try {
- this.context.startRecentAbility(want, options, (err: BusinessError) => {
- if (err.code) {
- // 处理业务逻辑错误
- console.error(`startRecentAbility failed, code is ${err.code}, message is ${err.message}`);
- return;
- }
- // 执行正常业务
- console.info('startRecentAbility succeed');
- });
- } catch (err) {
- // 处理入参错误异常
- let code = (err as BusinessError).code;
- let message = (err as BusinessError).message;
- console.error(`startRecentAbility failed, code is ${code}, message is ${message}`);
- }
- }
- }
复制代码 UIAbilityContext.startRecentAbility
startRecentAbility(want: Want, options?: StartOptions): Promise<void>
启动一个指定的Ability,如果这个Ability有多个实例,将拉起最近启动的谁人实例。 当开发者期望启动效果以Promise情势返回时可以选择此API。
使用规则:
- 调用方应用位于后台时,使用该接口启动Ability需申请权限。ohos.permission.START_ABILITIES_FROM_BACKGROUND
- 跨应用场景下,目标Ability的exported属性若设置为false,调用方应用需申请权限。ohos.permission.START_INVISIBLE_ABILITY
- 组件启动规则详见:组件启动规则(Stage模子)。
体系本领:SystemCapability.Ability.AbilityRuntime.Core
体系API: 此接口为体系接口,三方应用不支持调用。
参数:
参数名类型必填说明wantWant是需要启动Ability的want信息。optionsStartOptions否启动Ability所携带的参数。 错误码:
以下错误码的详细介绍请参见元本领子体系错误码。
错误码ID错误信息16000001The specified ability does not exist.16000002Incorrect ability type.16000004Can not start invisible component.16000005The specified process does not have the permission.16000006Cross-user operations are not allowed.16000008The crowdtesting application expires.16000009An ability cannot be started or stopped in Wukong mode.16000010The call with the continuation flag is forbidden.16000011The context does not exist.16000012The application is controlled.16000013The application is controlled by EDM.16000050Internal error.16000053The ability is not on the top of the UI.16000055Installation-free timed out.16200001The caller has been released. 示例:
- import UIAbility from '@ohos.app.ability.UIAbility';
- import Want from '@ohos.app.ability.Want';
- import StartOptions from '@ohos.app.ability.StartOptions';
- import { BusinessError } from '@ohos.base';
- export default class EntryAbility extends UIAbility {
- onForeground() {
- let want: Want = {
- bundleName: 'com.example.myapplication',
- abilityName: 'EntryAbility'
- };
- let options: StartOptions = {
- windowMode: 0,
- };
- try {
- this.context.startRecentAbility(want, options)
- .then(() => {
- // 执行正常业务
- console.info('startRecentAbility succeed');
- })
- .catch((err: BusinessError) => {
- // 处理业务逻辑错误
- console.error(`startRecentAbility failed, code is ${err.code}, message is ${err.message}`);
- });
- } catch (err) {
- // 处理入参错误异常
- let code = (err as BusinessError).code;
- let message = (err as BusinessError).message;
- console.error(`startRecentAbility failed, code is ${code}, message is ${message}`);
- }
- }
- }
复制代码 UIAbilityContext.startAbilityByCallWithAccount10+
startAbilityByCallWithAccount(want: Want, accountId: number): Promise<Caller>
根据accountId对指定的Ability进行call调用,并且可以使用返回的Caller通信接口与被调用方进行通信。
使用规则:
- 跨用户场景下,Call调用目标Ability时,调用方应用需同时申请与权限。ohos.permission.ABILITY_BACKGROUND_COMMUNICATIONohos.permission.INTERACT_ACROSS_LOCAL_ACCOUNTS
- 调用方应用位于后台时,使用该接口启动Ability需申请权限。ohos.permission.START_ABILITIES_FROM_BACKGROUND
- 跨应用场景下,目标Ability的exported属性若设置为false,调用方应用需申请权限。ohos.permission.START_INVISIBLE_ABILITY
- 同装备与跨装备场景下,该接口的使用规则存在差异,详见:组件启动规则(Stage模子)。
需要权限: ohos.permission.ABILITY_BACKGROUND_COMMUNICATION, ohos.permission.INTERACT_ACROSS_LOCAL_ACCOUNTS
体系本领:SystemCapability.Ability.AbilityRuntime.Core
体系API:此接口为体系接口,三方应用不支持调用。
参数:
参数名类型必填说明wantWant是传入需要启动的Ability的信息,包含abilityName、moduleName、bundleName、deviceId(可选)、parameters(可选),此中deviceId缺省或为空表示启动本地Ability,parameters缺省或为空表示后台启动Ability。accountIdnumber是体系帐号的帐号ID,-1表示当前活动用户,详情参考getCreatedOsAccountsCount。 返回值:
类型说明Promise<Caller>获取要通讯的caller对象。 错误码:
错误码ID错误信息16000001The specified ability does not exist.16000002Incorrect ability type.16000004Can not start invisible component.16000005Static permission denied. The specified process does not have the permission.16000006Cross-user operations are not allowed.16000008The crowdtesting application expires.16000011The context does not exist.16000012The application is controlled.16000013The application is controlled by EDM.16000050Internal error.16200001The caller has been released. 以上错误码详细介绍请参考元本领子体系错误码。
示例:
- import UIAbility from '@ohos.app.ability.UIAbility';
- import { Caller } from '@ohos.app.ability.UIAbility';
- import Want from '@ohos.app.ability.Want';
- import { BusinessError } from '@ohos.base';
- export default class EntryAbility extends UIAbility {
- onForeground() {
- let caller: Caller;
- // 系统账号的账号ID, -1表示当前激活用户
- let accountId = -1;
- // 指定启动的Ability
- let want: Want = {
- bundleName: 'com.acts.actscalleeabilityrely',
- moduleName: 'entry',
- abilityName: 'EntryAbility',
- deviceId: '',
- parameters: {
- // 'ohos.aafwk.param.callAbilityToForeground' 值设置为true时为前台启动, 设置false或不设置为后台启动
- 'ohos.aafwk.param.callAbilityToForeground': true
- }
- };
- try {
- this.context.startAbilityByCallWithAccount(want, accountId)
- .then((obj: Caller) => {
- // 执行正常业务
- caller = obj;
- console.log('startAbilityByCallWithAccount succeed');
- }).catch((error: BusinessError) => {
- // 处理业务逻辑错误
- console.error('startAbilityByCallWithAccount failed, error.code: ${error.code}, error.message: ${error.message}');
- });
- } catch (paramError) {
- // 处理入参错误异常
- console.error('error.code: ${paramError.code}, error.message: ${paramError.message}');
- }
- }
- }
复制代码 UIAbilityContext.startAbilityAsCaller10+
startAbilityAsCaller(want: Want, callback: AsyncCallback<void>): void
使用设置的caller信息启动一个Ability,caller信息由want携带,在体系服务层辨认,Ability可以在onCreate生命周期的want参数中获取到caller信息。使用该接口启动一个Ability时,want的caller信息不会被当前自身的应用信息覆盖,体系服务层可获取到初始caller的信息。使用callback异步回调。
使用规则:
- 调用方应用位于后台时,使用该接口启动Ability需申请权限。ohos.permission.START_ABILITIES_FROM_BACKGROUND
- 跨应用场景下,目标Ability的exported属性若设置为false,调用方应用需申请权限。ohos.permission.START_INVISIBLE_ABILITY
- 组件启动规则详见:组件启动规则(Stage模子)。
体系本领:SystemCapability.Ability.AbilityRuntime.Core
体系API:此接口为体系接口,三方应用不支持调用。
参数:
参数名类型必填说明wantWant是启动Ability的want信息。callbackAsyncCallback<void>是回调函数。当启动Ability成功,err为undefined,否则为错误对象。 错误码:
错误码ID错误信息16000001The specified ability does not exist.16000002Incorrect ability type.16000004Can not start invisible component.16000005The specified process does not have the permission.16000006Cross-user operations are not allowed.16000008The crowdtesting application expires.16000009An ability cannot be started or stopped in Wukong mode.16000010The call with the continuation flag is forbidden.16000011The context does not exist.16000012The application is controlled.16000013The application is controlled by EDM.16000050Internal error.16000053The ability is not on the top of the UI.16000055Installation-free timed out.16200001The caller has been released. 错误码详细介绍请参考元本领子体系错误码
示例:
- import UIAbility from '@ohos.app.ability.UIAbility';
- import AbilityConstant from '@ohos.app.ability.AbilityConstant';
- import Want from '@ohos.app.ability.Want';
- export default class EntryAbility extends UIAbility {
- onCreate(want: Want, launchParam: AbilityConstant.LaunchParam) {
- // want包含启动该应用的Caller信息
- let localWant: Want = want;
- localWant.bundleName = 'com.example.demo';
- localWant.moduleName = 'entry';
- localWant.abilityName = 'TestAbility';
- // 使用启动方的Caller身份信息启动新Ability
- this.context.startAbilityAsCaller(localWant, (err) => {
- if (err && err.code != 0) {
- console.error('startAbilityAsCaller failed, err:' + JSON.stringify(err));
- } else {
- console.log('startAbilityAsCaller success.');
- }
- })
- }
- }
复制代码 UIAbilityContext.startAbilityAsCaller10+
startAbilityAsCaller(want: Want, options: StartOptions, callback: AsyncCallback<void>): void
使用设置的caller信息启动一个Ability,caller信息由want携带,在体系服务层辨认,Ability可以在onCreate生命周期的want参数中获取到caller信息。使用该接口启动一个Ability时,want的caller信息不会被当前自身的应用信息覆盖,体系服务层可获取到初始caller的信息。使用callback异步回调。
使用规则:
- 调用方应用位于后台时,使用该接口启动Ability需申请权限。ohos.permission.START_ABILITIES_FROM_BACKGROUND
- 跨应用场景下,目标Ability的exported属性若设置为false,调用方应用需申请权限。ohos.permission.START_INVISIBLE_ABILITY
- 组件启动规则详见:组件启动规则(Stage模子)。
体系本领:SystemCapability.Ability.AbilityRuntime.Core
体系API:此接口为体系接口,三方应用不支持调用。
参数:
参数名类型必填说明wantWant是启动Ability的want信息。optionsStartOptions是启动Ability所携带的参数。callbackAsyncCallback<void>是回调函数。当启动Ability成功,err为undefined,否则为错误对象。 错误码:
错误码ID错误信息16000001The specified ability does not exist.16000004Can not start invisible component.16000005The specified process does not have the permission.16000006Cross-user operations are not allowed.16000008The crowdtesting application expires.16000009An ability cannot be started or stopped in Wukong mode.16000011The context does not exist.16000012The application is controlled.16000013The application is controlled by EDM.16000050Internal error.16000053The ability is not on the top of the UI.16000055Installation-free timed out.16200001The caller has been released. 错误码详细介绍请参考元本领子体系错误码
示例:
- import UIAbility from '@ohos.app.ability.UIAbility';
- import AbilityConstant from '@ohos.app.ability.AbilityConstant';
- import StartOptions from '@ohos.app.ability.StartOptions';
- import Want from '@ohos.app.ability.Want';
- export default class EntryAbility extends UIAbility {
- onCreate(want: Want, launchParam: AbilityConstant.LaunchParam) {
- // want包含启动该应用的Caller信息
- let localWant: Want = want;
- localWant.bundleName = 'com.example.demo';
- localWant.moduleName = 'entry';
- localWant.abilityName = 'TestAbility';
- let option: StartOptions = {
- displayId: 0
- }
- // 使用启动方的Caller身份信息启动新Ability
- this.context.startAbilityAsCaller(localWant, option, (err) => {
- if (err && err.code != 0) {
- console.error('startAbilityAsCaller failed, err:' + JSON.stringify(err));
- } else {
- console.log('startAbilityAsCaller success.');
- }
- })
- }
- }
复制代码 UIAbilityContext.startAbilityAsCaller10+
startAbilityAsCaller(want: Want, options?: StartOptions): Promise<void>
使用设置的caller信息启动一个Ability,caller信息由want携带,在体系服务层辨认,Ability可以在onCreate生命周期的want参数中获取到caller信息。使用该接口启动一个Ability时,want的caller信息不会被当前自身的应用信息覆盖,体系服务层可获取到初始caller的信息。使用Promise异步回调。
使用规则:
- 调用方应用位于后台时,使用该接口启动Ability需申请权限。ohos.permission.START_ABILITIES_FROM_BACKGROUND
- 跨应用场景下,目标Ability的exported属性若设置为false,调用方应用需申请权限。ohos.permission.START_INVISIBLE_ABILITY
- 组件启动规则详见:组件启动规则(Stage模子)。
体系本领:SystemCapability.Ability.AbilityRuntime.Core
体系API:此接口为体系接口,三方应用不支持调用。
参数:
参数名类型必填说明wantWant是启动Ability的want信息。optionsStartOptions否启动Ability所携带的参数。 返回值:
类型说明Promise<void>Promise对象。无返回效果的Promise对象。 错误码:
错误码ID错误信息16000001The specified ability does not exist.16000002Incorrect ability type.16000004Can not start invisible component.16000005The specified process does not have the permission.16000006Cross-user operations are not allowed.16000008The crowdtesting application expires.16000009An ability cannot be started or stopped in Wukong mode.16000010The call with the continuation flag is forbidden.16000011The context does not exist.16000012The application is controlled.16000013The application is controlled by EDM.16000050Internal error.16000053The ability is not on the top of the UI.16000055Installation-free timed out.16200001The caller has been released. 错误码详细介绍请参考元本领子体系错误码
示例:
- import UIAbility from '@ohos.app.ability.UIAbility';
- import AbilityConstant from '@ohos.app.ability.AbilityConstant';
- import StartOptions from '@ohos.app.ability.StartOptions';
- import Want from '@ohos.app.ability.Want';
- import { BusinessError } from '@ohos.base';
- export default class EntryAbility extends UIAbility {
- onCreate(want: Want, launchParam: AbilityConstant.LaunchParam) {
- // want包含启动该应用的Caller信息
- let localWant: Want = want;
- localWant.bundleName = 'com.example.demo';
- localWant.moduleName = 'entry';
- localWant.abilityName = 'TestAbility';
- let option: StartOptions = {
- displayId: 0
- }
- // 使用启动方的Caller身份信息启动新Ability
- this.context.startAbilityAsCaller(localWant, option)
- .then(() => {
- console.log('startAbilityAsCaller success.');
- })
- .catch((err: BusinessError) => {
- console.error('startAbilityAsCaller failed, err:' + JSON.stringify(err));
- })
- }
- }
复制代码 UIAbilityContext.reportDrawnCompleted10+
reportDrawnCompleted(callback: AsyncCallback<void>): void
当页面加载完成(loadContent成功)时,为开发者提供打点功能(callback情势)。 体系本领:SystemCapability.Ability.AbilityRuntime.Core
参数:
参数名类型必填说明callbackAsyncCallback<void>是页面加载完成打点的回调函数。 错误码:
错误码ID错误信息16000011The context does not exist.16000050Internal error. 错误码详细介绍请参考元本领子体系错误码
示例:
- import UIAbility from '@ohos.app.ability.UIAbility';
- import window from '@ohos.window';
- import { BusinessError } from '@ohos.base';
- export default class EntryAbility extends UIAbility {
- onWindowStageCreate(windowStage: window.WindowStage) {
- windowStage.loadContent('pages/Index', (err, data) => {
- if (err.code) {
- return;
- }
- try {
- this.context.reportDrawnCompleted((err) => {
- if (err.code) {
- // 处理业务逻辑错误
- console.error(`reportDrawnCompleted failed, code is ${err.code}, message is ${err.message}`);
- return;
- }
- // 执行正常业务
- console.info('reportDrawnCompleted succeed');
- });
- } catch (err) {
- // 捕获同步的参数错误
- let code = (err as BusinessError).code;
- let message = (err as BusinessError).message;
- console.error(`reportDrawnCompleted failed, code is ${code}, message is ${message}`);
- }
- });
- console.log("MainAbility onWindowStageCreate")
- }
- };
复制代码 末了
有很多小伙伴不知道学习哪些鸿蒙开发技能?不知道需要重点把握哪些鸿蒙应用开发知识点?而且学习时频繁踩坑,最终浪费大量时间。以是有一份实用的鸿蒙(HarmonyOS NEXT)资料用来跟着学习是非常有必要的。
这份鸿蒙(HarmonyOS NEXT)资料包含了鸿蒙开发必把握的焦点知识要点,内容包含了(ArkTS、ArkUI开发组件、Stage模子、多端部署、分布式应用开发、音频、视频、WebGL、OpenHarmony多媒体技能、Napi组件、OpenHarmony内核、Harmony南向开发、鸿蒙项目实战等等)鸿蒙(HarmonyOS NEXT)技能知识点。
渴望这一份鸿蒙学习资料可以或许给大家带来资助,有需要的小伙伴自行领取,限时开源,先到先得~无套路领取!!
获取这份完备版高清学习路线,请点击→纯血版全套鸿蒙HarmonyOS学习资料
鸿蒙(HarmonyOS NEXT)最新学习路线
- HarmonOS就业必备技能
- HarmonOS多媒体技能
有了路线图,怎么能没有学习资料呢,小编也准备了一份团结鸿蒙官方发布条记整理收纳的一套体系性的鸿蒙(OpenHarmony )学习手册(共计1236页)与鸿蒙(OpenHarmony )开发入门教学视频,内容包含:ArkTS、ArkUI、Web开发、应用模子、资源分类…等知识点。
获取以上完备版高清学习路线,请点击→纯血版全套鸿蒙HarmonyOS学习资料
《鸿蒙 (OpenHarmony)开发入门教学视频》
《鸿蒙生态应用开发V2.0白皮书》
《鸿蒙 (OpenHarmony)开发底子到实战手册》
OpenHarmony北向、南向开发环境搭建
《鸿蒙开发底子》
- ArkTS语言
- 安装DevEco Studio
- 运用你的第一个ArkTS应用
- ArkUI声明式UI开发
- .……
《鸿蒙开发进阶》
- Stage模子入门
- 网络管理
- 数据管理
- 电话服务
- 分布式应用开发
- 关照与窗口管理
- 多媒体技能
- 安全技能
- 任务管理
- WebGL
- 国际化开发
- 应用测试
- DFX面向将来设计
- 鸿蒙体系移植和裁剪定制
- ……
《鸿蒙进阶实战》
- ArkTS实践
- UIAbility应用
- 网络案例
- ……
获取以上完备鸿蒙HarmonyOS学习资料,请点击→纯血版全套鸿蒙HarmonyOS学习资料
总结
总的来说,华为鸿蒙不再兼容安卓,对中年步伐员来说是一个挑衅,也是一个时机。只有积极应对变革,不断学习和提升自己,他们才气在这个变革的时代中立于不败之地。
免责声明:如果侵犯了您的权益,请联系站长,我们会及时删除侵权内容,谢谢合作!更多信息从访问主页:qidao123.com:ToB企服之家,中国第一个企服评测及商务社交产业平台。 |