窗口

2024-01-23 13:22 更新

窗口提供管理窗口的一些基础能力,包括对当前窗口的创建、销毁、各属性设置,以及对各窗口间的管理调度。

该模块提供以下窗口相关的常用功能:

  • Window:当前窗口实例,窗口管理器管理的基本单元。
  • WindowStage:窗口管理器。管理各个基本窗口单元。
说明

本模块首批接口从API version 6开始支持。后续版本的新增接口,采用上角标单独标记接口的起始版本。

导入模块

  1. import window from '@ohos.window';

WindowType7+

窗口类型枚举。

系统能力: SystemCapability.WindowManager.WindowManager.Core

名称

说明

TYPE_APP

0

表示应用子窗口。

模型约束: 此接口仅可在FA模型下使用。

TYPE_SYSTEM_ALERT

1

表示系统告警窗口。

TYPE_FLOAT9+

8

表示悬浮窗。

模型约束: 此接口仅可在Stage模型下使用。

需要权限: ohos.permission.SYSTEM_FLOAT_WINDOW

Configuration9+

创建子窗口时的参数。

系统能力: SystemCapability.WindowManager.WindowManager.Core

名称

类型

必填

说明

name

string

窗口名字。

windowType

WindowType

窗口类型。

ctx

BaseContext

当前应用上下文信息。不设置,则默认为空。

FA模型下不需要使用该参数,即可创建子窗口。

Stage模型下需要使用该参数,用于创建系统窗口。

displayId

number

当前物理屏幕id。不设置,则默认为-1。

parentId

number

父窗口id。不设置,则默认为-1。

AvoidAreaType7+

窗口内容需要规避区域的类型枚举。

系统能力: SystemCapability.WindowManager.WindowManager.Core

名称

说明

TYPE_SYSTEM

0

表示系统默认区域。一般包括状态栏、导航栏,各设备系统定义可能不同。

TYPE_CUTOUT

1

表示刘海屏区域。

TYPE_SYSTEM_GESTURE9+

2

表示手势区域。

TYPE_KEYBOARD9+

3

表示软键盘区域。

SystemBarProperties

状态栏、导航栏的属性。

说明

当前HarmonyOS设备均不支持此接口,此接口在被setWindowSystemBarProperties()接口调用时将返回801错误码。

系统能力: SystemCapability.WindowManager.WindowManager.Core

名称

类型

必填

说明

statusBarColor

string

状态栏背景颜色,为十六进制RGB或ARGB颜色,不区分大小写,例如#00FF00或#FF00FF00。默认值:#0x66000000。

isStatusBarLightIcon7+

boolean

状态栏图标是否为高亮状态。true表示高亮;false表示不高亮。默认值:false。

statusBarContentColor8+

string

状态栏文字颜色。当设置此属性后, isStatusBarLightIcon属性设置无效。默认值:0xE5FFFFFF。

navigationBarColor

string

导航栏背景颜色,为十六进制RGB或ARGB颜色,不区分大小写,例如#00FF00或#FF00FF00。默认值:#0x66000000。

isNavigationBarLightIcon7+

boolean

导航栏图标是否为高亮状态。true表示高亮;false表示不高亮。默认值:false。

navigationBarContentColor8+

string

导航栏文字颜色。当设置此属性后, isNavigationBarLightIcon属性设置无效。默认值:#0xE5FFFFFF。

Orientation9+

窗口显示方向类型枚举。

系统能力: SystemCapability.WindowManager.WindowManager.Core

名称

说明

UNSPECIFIED

0

表示未定义方向模式,由系统判定。

PORTRAIT

1

表示竖屏显示模式。

LANDSCAPE

2

表示横屏显示模式。

PORTRAIT_INVERTED

3

表示反向竖屏显示模式。

LANDSCAPE_INVERTED

4

表示反向横屏显示模式。

AUTO_ROTATION

5

表示传感器自动旋转模式。

AUTO_ROTATION_PORTRAIT

6

表示传感器自动竖向旋转模式。

AUTO_ROTATION_LANDSCAPE

7

表示传感器自动横向旋转模式。

AUTO_ROTATION_RESTRICTED

8

表示受开关控制的自动旋转模式。

AUTO_ROTATION_PORTRAIT_RESTRICTED

9

表示受开关控制的自动竖向旋转模式。

AUTO_ROTATION_LANDSCAPE_RESTRICTED

10

表述受开关控制的自动横向旋转模式。

LOCKED

11

表示锁定模式。

Rect7+

窗口矩形区域。

系统能力: SystemCapability.WindowManager.WindowManager.Core

名称

类型

可读

可写

说明

left

number

矩形区域的左边界,单位为px。

top

number

矩形区域的上边界,单位为px。

width

number

矩形区域的宽度,单位为px。

height

number

矩形区域的高度,单位为px。

AvoidArea7+

窗口内容规避区域。

系统能力: SystemCapability.WindowManager.WindowManager.Core

名称

类型

可读

可写

说明

visible9+

boolean

规避区域是否可见。true表示可见;false表示不可见。

leftRect

Rect

屏幕左侧的矩形区。

topRect

Rect

屏幕顶部的矩形区。

rightRect

Rect

屏幕右侧的矩形区。

bottomRect

Rect

屏幕底部的矩形区。

Size7+

窗口大小。

系统能力: SystemCapability.WindowManager.WindowManager.Core

名称

类型

可读

可写

说明

width

number

窗口宽度,单位为px。

height

number

窗口高度,单位为px。

WindowProperties

窗口属性。

系统能力: SystemCapability.WindowManager.WindowManager.Core

名称

类型

可读

可写

说明

windowRect7+

Rect

窗口尺寸。

type7+

WindowType

窗口类型。

isFullScreen

boolean

是否全屏,默认为false。true表示全屏;false表示非全屏。

isLayoutFullScreen7+

boolean

窗口是否为沉浸式,默认为false。true表示沉浸式;false表示非沉浸式。

focusable7+

boolean

窗口是否可聚焦,默认为true。true表示可聚焦;false表示不可聚焦。

touchable7+

boolean

窗口是否可触摸,默认为true。true表示可触摸;false表示不可触摸。

brightness

number

屏幕亮度, 可设置的亮度范围为0~1,其中1表示最大亮度值。如果窗口没有设置亮度值,表示亮度跟随系统,此时获取到的亮度值为-1。

dimBehindValue(deprecated)

number

靠后窗口的暗度值,取值范围为0~1,1表示最暗。

说明: 从API version 9开始废弃。

- 从 API version 7开始支持。

isKeepScreenOn

boolean

屏幕是否常亮,默认为false。true表示常亮;false表示不常亮。

isPrivacyMode7+

boolean

隐私模式,默认为false。true表示模式开启;false表示模式关闭。

isRoundCorner(deprecated)

boolean

窗口是否为圆角。默认为false。true表示圆角;false表示非圆角。

说明: 从API version 9开始废弃。

- 从 API version 7开始支持。

isTransparent7+

boolean

窗口是否透明。默认为false。true表示透明;false表示不透明。

id9+

number

窗口ID,默认值为0.0。

ColorSpace8+

色域模式。

系统能力: SystemCapability.WindowManager.WindowManager.Core

名称

说明

DEFAULT

0

默认SRGB色域模式。

WIDE_GAMUT

1

广色域模式。

window.createWindow9+

createWindow(config: Configuration, callback: AsyncCallback<Window>): void

创建子窗口,使用callback异步回调。

系统能力: SystemCapability.WindowManager.WindowManager.Core

参数:

参数名

类型

必填

说明

config

Configuration

创建窗口时的参数。

callback

AsyncCallback<Window>

回调函数。返回当前创建的窗口对象。

错误码:

以下错误码的详细介绍请参见窗口错误码

错误码ID

错误信息

1300001

Repeated operation.

1300006

This window context is abnormal.

示例:

  1. let windowClass = null;
  2. let config = {name: "alertWindow", windowType: window.WindowType.TYPE_SYSTEM_ALERT, ctx: this.context};
  3. try {
  4. window.createWindow(config, (err, data) => {
  5. if (err.code) {
  6. console.error('Failed to create the window. Cause: ' + JSON.stringify(err));
  7. return;
  8. }
  9. windowClass = data;
  10. console.info('Succeeded in creating the window. Data: ' + JSON.stringify(data));
  11. windowClass.resize(500, 1000);
  12. });
  13. } catch (exception) {
  14. console.error('Failed to create the window. Cause: ' + JSON.stringify(exception));
  15. }

window.createWindow9+

createWindow(config: Configuration): Promise<Window>

创建子窗口,使用Promise异步回调。

系统能力: SystemCapability.WindowManager.WindowManager.Core

参数:

参数名

类型

必填

说明

config

Configuration

创建窗口时的参数。

返回值:

类型

说明

Promise<Window>

Promise对象。返回当前创建的窗口对象。

错误码:

以下错误码的详细介绍请参见窗口错误码

错误码ID

错误信息

1300001

Repeated operation.

1300006

This window context is abnormal.

示例:

  1. let windowClass = null;
  2. let config = {name: "alertWindow", windowType: window.WindowType.TYPE_SYSTEM_ALERT, ctx: this.context};
  3. try {
  4. let promise = window.createWindow(config);
  5. promise.then((data)=> {
  6. windowClass = data;
  7. console.info('Succeeded in creating the window. Data:' + JSON.stringify(data));
  8. }).catch((err)=>{
  9. console.error('Failed to create the Window. Cause:' + JSON.stringify(err));
  10. });
  11. } catch (exception) {
  12. console.error('Failed to create the window. Cause: ' + JSON.stringify(exception));
  13. }

window.findWindow9+

findWindow(name: string): Window

查找name所对应的窗口。

系统能力: SystemCapability.WindowManager.WindowManager.Core

参数:

参数名

类型

必填

说明

name

string

窗口id。

返回值:

类型

说明

Window

当前查找的窗口对象。

示例:

  1. let windowClass = null;
  2. try {
  3. windowClass = window.findWindow('alertWindow');
  4. } catch (exception) {
  5. console.error('Failed to find the Window. Cause: ' + JSON.stringify(exception));
  6. }

window.getLastWindow9+

getLastWindow(ctx: BaseContext, callback: AsyncCallback<Window>): void

获取当前应用内最上层的子窗口,若无应用子窗口,则返回应用主窗口,使用callback异步回调。

系统能力: SystemCapability.WindowManager.WindowManager.Core

参数:

参数名

类型

必填

说明

ctx

BaseContext

当前应用上下文信息。

callback

AsyncCallback<Window>

回调函数。返回当前应用内最后显示的窗口对象。

错误码:

以下错误码的详细介绍请参见窗口错误码

错误码ID

错误信息

1300002

This window state is abnormal.

1300006

This window context is abnormal.

示例:

  1. import UIAbility from '@ohos.app.ability.UIAbility';
  2. import window from '@ohos.window';
  3. class myAbility extends UIAbility {
  4. // ...
  5. onWindowStageCreate(windowStage) {
  6. console.log('onWindowStageCreate');
  7. let windowClass = undefined;
  8. try {
  9. window.getLastWindow(this.context, (err, data) => {
  10. if (err.code) {
  11. console.error('Failed to obtain the top window. Cause: ' + JSON.stringify(err));
  12. return;
  13. }
  14. windowClass = data;
  15. console.info('Succeeded in obtaining the top window. Data: ' + JSON.stringify(data));
  16. });
  17. } catch (exception) {
  18. console.error('Failed to obtain the top window. Cause: ' + JSON.stringify(exception));
  19. }
  20. }
  21. }

window.getLastWindow9+

getLastWindow(ctx: BaseContext): Promise<Window>

获取当前应用内最上层的子窗口,若无应用子窗口,则返回应用主窗口,使用Promise异步回调。

系统能力: SystemCapability.WindowManager.WindowManager.Core

参数:

参数名

类型

必填

说明

ctx

BaseContext

当前应用上下文信息。

返回值:

类型

说明

Promise<Window>

Promise对象。返回当前应用内最后显示的窗口对象。

错误码:

以下错误码的详细介绍请参见窗口错误码

错误码ID

错误信息

1300002

This window state is abnormal.

1300006

This window context is abnormal.

示例:

  1. import UIAbility from '@ohos.app.ability.UIAbility';
  2. import window from '@ohos.window';
  3. class myAbility extends UIAbility {
  4. // ...
  5. onWindowStageCreate(windowStage) {
  6. console.log('onWindowStageCreate');
  7. let windowClass = undefined;
  8. try {
  9. let promise = window.getLastWindow(this.context);
  10. promise.then((data) => {
  11. windowClass = data;
  12. console.info('Succeeded in obtaining the top window. Data: ' + JSON.stringify(data));
  13. }).catch((err) => {
  14. console.error('Failed to obtain the top window. Cause: ' + JSON.stringify(err));
  15. });
  16. } catch (exception) {
  17. console.error('Failed to obtain the top window. Cause: ' + JSON.stringify(exception));
  18. }
  19. };
  20. }

window.create(deprecated)

create(id: string, type: WindowType, callback: AsyncCallback<Window>): void

创建子窗口,使用callback异步回调。

说明

从 API version 7开始支持,从API version 9开始废弃,推荐使用createWindow()

模型约束: 此接口仅可在FA模型下使用。

系统能力: SystemCapability.WindowManager.WindowManager.Core

参数:

参数名

类型

必填

说明

id

string

窗口id。

type

WindowType

窗口类型。

callback

AsyncCallback<Window>

回调函数。返回当前创建的子窗口对象。

示例:

  1. let windowClass = null;
  2. window.create('first', window.WindowType.TYPE_APP,(err,data) => {
  3. if(err.code){
  4. console.error('Failed to create the subWindow. Cause: ' + JSON.stringify(err));
  5. return;
  6. }
  7. windowClass = data;
  8. console.info('Succeeded in creating the subWindow. Data: ' + JSON.stringify(data));
  9. });

window.create(deprecated)

create(id: string, type: WindowType): Promise<Window>

创建子窗口,使用Promise异步回调。

说明

从 API version 7开始支持,从API version 9开始废弃,推荐使用createWindow()

模型约束: 此接口仅可在FA模型下使用。

系统能力: SystemCapability.WindowManager.WindowManager.Core

参数:

参数名

类型

必填

说明

id

string

窗口id。

type

WindowType

窗口类型。

返回值:

类型

说明

Promise<Window>

Promise对象。返回当前创建的子窗口对象。

示例:

  1. let windowClass = null;
  2. let promise = window.create('first', window.WindowType.TYPE_APP);
  3. promise.then((data)=> {
  4. windowClass = data;
  5. console.info('Succeeded in creating the subWindow. Data: ' + JSON.stringify(data));
  6. }).catch((err)=>{
  7. console.error('Failed to create the subWindow. Cause: ' + JSON.stringify(err));
  8. });

window.create(deprecated)

create(ctx: BaseContext, id: string, type: WindowType, callback: AsyncCallback<Window>): void

创建子窗口,使用callback异步回调。

当前此接口仅可在FA模型下使用。

说明

从 API version 7开始支持,从API version 9开始废弃,推荐使用createWindow()

系统能力: SystemCapability.WindowManager.WindowManager.Core

参数:

参数名

类型

必填

说明

ctx

BaseContext

当前应用上下文信息。

id

string

窗口id。

type

WindowType

窗口类型。

callback

AsyncCallback<Window>

回调函数。返回当前创建的子窗口对象。

示例:

  1. let windowClass = null;
  2. window.create(this.context, 'alertWindow', window.WindowType.TYPE_SYSTEM_ALERT, (err, data) => {
  3. if (err.code) {
  4. console.error('Failed to create the window. Cause: ' + JSON.stringify(err));
  5. return;
  6. }
  7. windowClass = data;
  8. console.info('Succeeded in creating the window. Data: ' + JSON.stringify(data));
  9. windowClass.resetSize(500, 1000);
  10. });

window.create(deprecated)

create(ctx: BaseContext, id: string, type: WindowType): Promise<Window>

创建子窗口,使用Promise异步回调。

当前此接口仅可在FA模型下使用。

说明

从 API version 7开始支持,从API version 9开始废弃,推荐使用createWindow()

系统能力: SystemCapability.WindowManager.WindowManager.Core

参数:

参数名

类型

必填

说明

ctx

BaseContext

当前应用上下文信息。

id

string

窗口id。

type

WindowType

窗口类型。

返回值:

类型

说明

Promise<Window>

Promise对象。返回当前创建的子窗口对象。

示例:

  1. let windowClass = null;
  2. let promise = window.create(this.context, 'alertWindow', window.WindowType.TYPE_SYSTEM_ALERT);
  3. promise.then((data)=> {
  4. windowClass = data;
  5. console.info('Succeeded in creating the window. Data:' + JSON.stringify(data));
  6. }).catch((err)=>{
  7. console.error('Failed to create the Window. Cause:' + JSON.stringify(err));
  8. });

window.find(deprecated)

find(id: string, callback: AsyncCallback<Window>): void

查找id所对应的窗口,使用callback异步回调。

说明

从 API version 7开始支持,从API version 9开始废弃,推荐使用findWindow()

系统能力: SystemCapability.WindowManager.WindowManager.Core

参数:

参数名

类型

必填

说明

id

string

窗口id。

callback

AsyncCallback<Window>

回调函数。返回当前查找到的窗口对象。

示例:

  1. let windowClass = null;
  2. window.find('alertWindow', (err, data) => {
  3. if (err.code) {
  4. console.error('Failed to find the Window. Cause: ' + JSON.stringify(err));
  5. return;
  6. }
  7. windowClass = data;
  8. console.info('Succeeded in finding the window. Data: ' + JSON.stringify(data));
  9. });

window.find(deprecated)

find(id: string): Promise<Window>

查找id所对应的窗口,使用Promise异步回调。

说明

从 API version 7开始支持,从API version 9开始废弃,推荐使用findWindow()

系统能力: SystemCapability.WindowManager.WindowManager.Core

参数:

参数名

类型

必填

说明

id

string

窗口id。

返回值:

类型

说明

Promise<Window>

Promise对象。返回当前查找的窗口对象。

示例:

  1. let windowClass = null;
  2. let promise = window.find('alertWindow');
  3. promise.then((data)=> {
  4. windowClass = data;
  5. console.info('Succeeded in finding the window. Data: ' + JSON.stringify(data));
  6. }).catch((err)=>{
  7. console.error('Failed to find the Window. Cause: ' + JSON.stringify(err));
  8. });

window.getTopWindow(deprecated)

getTopWindow(callback: AsyncCallback<Window>): void

获取当前应用内最后显示的窗口,使用callback异步回调。

说明

从 API version 6开始支持,从API version 9开始废弃,推荐使用getLastWindow()

模型约束: 此接口仅可在FA模型下使用。

系统能力: SystemCapability.WindowManager.WindowManager.Core

参数:

参数名

类型

必填

说明

callback

AsyncCallback<Window>

回调函数。返回当前应用内最后显示的窗口对象。

示例:

  1. let windowClass = null;
  2. window.getTopWindow((err, data) => {
  3. if (err.code) {
  4. console.error('Failed to obtain the top window. Cause: ' + JSON.stringify(err));
  5. return;
  6. }
  7. windowClass = data;
  8. console.info('Succeeded in obtaining the top window. Data: ' + JSON.stringify(data));
  9. });

window.getTopWindow(deprecated)

getTopWindow(): Promise<Window>

获取当前应用内最后显示的窗口,使用Promise异步回调。

说明

从 API version 6开始支持,从API version 9开始废弃,推荐使用getLastWindow()

模型约束: 此接口仅可在FA模型下使用。

系统能力: SystemCapability.WindowManager.WindowManager.Core

返回值:

类型

说明

Promise<Window>

Promise对象。返回当前应用内最后显示的窗口对象。

示例:

  1. let windowClass = null;
  2. let promise = window.getTopWindow();
  3. promise.then((data)=> {
  4. windowClass = data;
  5. console.info('Succeeded in obtaining the top window. Data: ' + JSON.stringify(data));
  6. }).catch((err)=>{
  7. console.error('Failed to obtain the top window. Cause: ' + JSON.stringify(err));
  8. });

window.getTopWindow(deprecated)

getTopWindow(ctx: BaseContext, callback: AsyncCallback<Window>): void

获取当前应用内最后显示的窗口,使用callback异步回调。

说明

从 API version 8开始支持,从API version 9开始废弃,推荐使用getLastWindow()

系统能力: SystemCapability.WindowManager.WindowManager.Core

参数:

参数名

类型

必填

说明

ctx

BaseContext

当前应用上下文信息。

callback

AsyncCallback<Window>

回调函数。返回当前应用内最后显示的窗口对象。

示例:

  1. let windowClass = null;
  2. window.getTopWindow(this.context, (err, data) => {
  3. if (err.code) {
  4. console.error('Failed to obtain the top window. Cause: ' + JSON.stringify(err));
  5. return;
  6. }
  7. windowClass = data;
  8. console.info('Succeeded in obtaining the top window. Data: ' + JSON.stringify(data));
  9. });

window.getTopWindow(deprecated)

getTopWindow(ctx: BaseContext): Promise<Window>

获取当前应用内最后显示的窗口,使用Promise异步回调。

说明

从 API version 8开始支持,从API version 9开始废弃,推荐使用getLastWindow()

系统能力: SystemCapability.WindowManager.WindowManager.Core

参数:

参数名

类型

必填

说明

ctx

BaseContext

当前应用上下文信息。

返回值:

类型

说明

Promise<Window>

Promise对象。返回当前应用内最后显示的窗口对象。

示例:

  1. let windowClass = null;
  2. let promise = window.getTopWindow(this.context);
  3. promise.then((data)=> {
  4. windowClass = data;
  5. console.info('Succeeded in obtaining the top window. Data: ' + JSON.stringify(data));
  6. }).catch((err)=>{
  7. console.error('Failed to obtain the top window. Cause: ' + JSON.stringify(err));
  8. });

Window

当前窗口实例,窗口管理器管理的基本单元。

下列API示例中都需先使用getLastWindow()createWindow()findWindow()中的任一方法获取到Window实例,再通过此实例调用对应方法。

showWindow9+

showWindow(callback: AsyncCallback<void>): void

显示当前窗口,使用callback异步回调。

系统能力: SystemCapability.WindowManager.WindowManager.Core

参数:

参数名

类型

必填

说明

callback

AsyncCallback<void>

回调函数。

错误码:

以下错误码的详细介绍请参见窗口错误码

错误码ID

错误信息

1300002

This window state is abnormal.

示例:

  1. windowClass.showWindow((err) => {
  2. if (err.code) {
  3. console.error('Failed to show the window. Cause: ' + JSON.stringify(err));
  4. return;
  5. }
  6. console.info('Succeeded in showing the window.');
  7. });

showWindow9+

showWindow(): Promise<void>

显示当前窗口,使用Promise异步回调。

系统能力: SystemCapability.WindowManager.WindowManager.Core

返回值:

类型

说明

Promise<void>

无返回结果的Promise对象。

错误码:

以下错误码的详细介绍请参见窗口错误码

错误码ID

错误信息

1300002

This window state is abnormal.

示例:

  1. let promise = windowClass.showWindow();
  2. promise.then(()=> {
  3. console.info('Succeeded in showing the window.');
  4. }).catch((err)=>{
  5. console.error('Failed to show the window. Cause: ' + JSON.stringify(err));
  6. });

destroyWindow9+

destroyWindow(callback: AsyncCallback<void>): void

销毁当前窗口,使用callback异步回调。

系统能力: SystemCapability.WindowManager.WindowManager.Core

参数:

参数名

类型

必填

说明

callback

AsyncCallback<void>

回调函数。

错误码:

以下错误码的详细介绍请参见窗口错误码

错误码ID

错误信息

1300002

This window state is abnormal.

1300003

This window manager service works abnormally.

示例:

  1. windowClass.destroyWindow((err) => {
  2. if (err.code) {
  3. console.error('Failed to destroy the window. Cause:' + JSON.stringify(err));
  4. return;
  5. }
  6. console.info('Succeeded in destroying the window.');
  7. });

destroyWindow9+

destroyWindow(): Promise<void>

销毁当前窗口,使用Promise异步回调。

系统能力: SystemCapability.WindowManager.WindowManager.Core

返回值:

类型

说明

Promise<void>

无返回结果的Promise对象。

错误码:

以下错误码的详细介绍请参见窗口错误码

错误码ID

错误信息

1300002

This window state is abnormal.

1300003

This window manager service works abnormally.

示例:

  1. let promise = windowClass.destroyWindow();
  2. promise.then(()=> {
  3. console.info('Succeeded in destroying the window.');
  4. }).catch((err)=>{
  5. console.error('Failed to destroy the window. Cause: ' + JSON.stringify(err));
  6. });

moveWindowTo9+

moveWindowTo(x: number, y: number, callback: AsyncCallback<void>): void

移动窗口位置,使用callback异步回调。

全屏模式窗口不支持该操作。

系统能力: SystemCapability.WindowManager.WindowManager.Core

参数:

参数名

类型

必填

说明

x

number

窗口在x轴方向移动的值,值为正表示右移,单位为px。

y

number

窗口在y轴方向移动的值,值为正表示下移,单位为px。

callback

AsyncCallback<void>

回调函数。

错误码:

以下错误码的详细介绍请参见窗口错误码

错误码ID

错误信息

1300002

This window state is abnormal.

1300003

This window manager service works abnormally.

示例:

  1. try {
  2. windowClass.moveWindowTo(300, 300, (err)=>{
  3. if (err.code) {
  4. console.error('Failed to move the window. Cause:' + JSON.stringify(err));
  5. return;
  6. }
  7. console.info('Succeeded in moving the window.');
  8. });
  9. } catch (exception) {
  10. console.error('Failed to move the window. Cause:' + JSON.stringify(exception));
  11. }

moveWindowTo9+

moveWindowTo(x: number, y: number): Promise<void>

移动窗口位置,使用Promise异步回调。

全屏模式窗口不支持该操作。

系统能力: SystemCapability.WindowManager.WindowManager.Core

参数:

参数名

类型

必填

说明

x

number

窗口在x轴方向移动的值,值为正表示右移,单位为px。

y

number

窗口在y轴方向移动的值,值为正表示下移,单位为px。

返回值:

类型

说明

Promise<void>

无返回结果的Promise对象。

错误码:

以下错误码的详细介绍请参见窗口错误码

错误码ID

错误信息

1300002

This window state is abnormal.

1300003

This window manager service works abnormally.

示例:

  1. try {
  2. let promise = windowClass.moveWindowTo(300, 300);
  3. promise.then(()=> {
  4. console.info('Succeeded in moving the window.');
  5. }).catch((err)=>{
  6. console.error('Failed to move the window. Cause: ' + JSON.stringify(err));
  7. });
  8. } catch (exception) {
  9. console.error('Failed to move the window. Cause:' + JSON.stringify(exception));
  10. }

resize9+

resize(width: number, height: number, callback: AsyncCallback<void>): void

改变当前窗口大小,使用callback异步回调。

应用主窗口与子窗口存在大小限制,宽度范围:[320, 2560],高度范围:[240, 2560],单位为vp。

系统窗口存在大小限制,宽度范围:[0, 2560],高度范围:[0, 2560],单位为vp。

设置的宽度与高度受到此约束限制,规则: 若所设置的窗口宽/高尺寸小于窗口最小宽/高限值,则窗口最小宽/高限值生效; 若所设置的窗口宽/高尺寸大于窗口最大宽/高限值,则窗口最大宽/高限值生效。

全屏模式窗口不支持该操作。

系统能力: SystemCapability.WindowManager.WindowManager.Core

参数:

参数名

类型

必填

说明

width

number

目标窗口的宽度,单位为px。

height

number

目标窗口的高度,单位为px。

callback

AsyncCallback<void>

回调函数。

错误码:

以下错误码的详细介绍请参见窗口错误码

错误码ID

错误信息

1300002

This window state is abnormal.

1300003

This window manager service works abnormally.

示例:

  1. try {
  2. windowClass.resize(500, 1000, (err) => {
  3. if (err.code) {
  4. console.error('Failed to change the window size. Cause:' + JSON.stringify(err));
  5. return;
  6. }
  7. console.info('Succeeded in changing the window size.');
  8. });
  9. } catch (exception) {
  10. console.error('Failed to change the window size. Cause:' + JSON.stringify(exception));
  11. }

resize9+

resize(width: number, height: number): Promise<void>

改变当前窗口大小,使用Promise异步回调。

应用主窗口与子窗口存在大小限制,宽度范围:[320, 2560],高度范围:[240, 2560],单位为vp。

系统窗口存在大小限制,宽度范围:[0, 2560],高度范围:[0, 2560],单位为vp。

设置的宽度与高度受到此约束限制,规则: 若所设置的窗口宽/高尺寸小于窗口最小宽/高限值,则窗口最小宽/高限值生效; 若所设置的窗口宽/高尺寸大于窗口最大宽/高限值,则窗口最大宽/高限值生效。

全屏模式窗口不支持该操作。

系统能力: SystemCapability.WindowManager.WindowManager.Core

参数:

参数名

类型

必填

说明

width

number

目标窗口的宽度,单位为px。

height

number

目标窗口的高度,单位为px。

返回值:

类型

说明

Promise<void>

无返回结果的Promise对象。

错误码:

以下错误码的详细介绍请参见窗口错误码

错误码ID

错误信息

1300002

This window state is abnormal.

1300003

This window manager service works abnormally.

示例:

  1. try {
  2. let promise = windowClass.resize(500, 1000);
  3. promise.then(()=> {
  4. console.info('Succeeded in changing the window size.');
  5. }).catch((err)=>{
  6. console.error('Failed to change the window size. Cause: ' + JSON.stringify(err));
  7. });
  8. } catch (exception) {
  9. console.error('Failed to change the window size. Cause: ' + JSON.stringify(exception));
  10. }

getWindowProperties9+

getWindowProperties(): WindowProperties

获取当前窗口的属性,返回WindowProperties。

系统能力: SystemCapability.WindowManager.WindowManager.Core

返回值:

类型

说明

WindowProperties

当前窗口属性。

错误码:

以下错误码的详细介绍请参见窗口错误码

错误码ID

错误信息

1300002

This window state is abnormal.

示例:

  1. try {
  2. let properties = windowClass.getWindowProperties();
  3. } catch (exception) {
  4. console.error('Failed to obtain the window properties. Cause: ' + JSON.stringify(exception));
  5. }

getWindowAvoidArea9+

getWindowAvoidArea(type: AvoidAreaType): AvoidArea

获取窗口内容规避的区域;如系统栏区域、刘海屏区域、手势区域、软键盘区域等与窗口内容重叠时,需要窗口内容避让的区域。

系统能力: SystemCapability.WindowManager.WindowManager.Core

参数:

参数名

类型

必填

说明

type

AvoidAreaType

表示规避区类型。

返回值:

类型

说明

AvoidArea

窗口内容规避区域。

错误码:

以下错误码的详细介绍请参见窗口错误码

错误码ID

错误信息

1300002

This window state is abnormal.

示例:

  1. let type = window.AvoidAreaType.TYPE_SYSTEM;
  2. try {
  3. let avoidArea = windowClass.getWindowAvoidArea(type);
  4. } catch (exception) {
  5. console.error('Failed to obtain the area. Cause:' + JSON.stringify(exception));
  6. }

setWindowLayoutFullScreen9+

setWindowLayoutFullScreen(isLayoutFullScreen: boolean, callback: AsyncCallback<void>): void

设置窗口的布局是否为全屏显示状态,使用callback异步回调。

系统能力: SystemCapability.WindowManager.WindowManager.Core

参数:

参数名

类型

必填

说明

isLayoutFullScreen

boolean

窗口的布局是否为全屏显示状态(该全屏状态下状态栏、导航栏仍然显示)。true表示全屏显示;false表示非全屏显示。

callback

AsyncCallback<void>

回调函数。

错误码:

以下错误码的详细介绍请参见窗口错误码

错误码ID

错误信息

1300002

This window state is abnormal.

1300003

This window manager service works abnormally.

示例:

  1. let isLayoutFullScreen= true;
  2. try {
  3. windowClass.setWindowLayoutFullScreen(isLayoutFullScreen, (err) => {
  4. if (err.code) {
  5. console.error('Failed to set the window layout to full-screen mode. Cause:' + JSON.stringify(err));
  6. return;
  7. }
  8. console.info('Succeeded in setting the window layout to full-screen mode.');
  9. });
  10. } catch (exception) {
  11. console.error('Failed to set the window layout to full-screen mode. Cause:' + JSON.stringify(exception));
  12. }

setWindowLayoutFullScreen9+

setWindowLayoutFullScreen(isLayoutFullScreen: boolean): Promise<void>

设置窗口的布局是否为全屏显示状态,使用Promise异步回调。

系统能力: SystemCapability.WindowManager.WindowManager.Core

参数:

参数名

类型

必填

说明

isLayoutFullScreen

boolean

窗口的布局是否为全屏显示状态(该全屏状态下状态栏、导航栏仍然显示)。true表示全屏显示;false表示非全屏显示。

返回值:

类型

说明

Promise<void>

无返回结果的Promise对象。

错误码:

以下错误码的详细介绍请参见窗口错误码

错误码ID

错误信息

1300002

This window state is abnormal.

1300003

This window manager service works abnormally.

示例:

  1. let isLayoutFullScreen = true;
  2. try {
  3. let promise = windowClass.setWindowLayoutFullScreen(isLayoutFullScreen);
  4. promise.then(()=> {
  5. console.info('Succeeded in setting the window layout to full-screen mode.');
  6. }).catch((err)=>{
  7. console.error('Failed to set the window layout to full-screen mode. Cause:' + JSON.stringify(err));
  8. });
  9. } catch (exception) {
  10. console.error('Failed to set the window layout to full-screen mode. Cause:' + JSON.stringify(exception));
  11. }

setWindowSystemBarEnable9+

setWindowSystemBarEnable(names: Array<'status' | 'navigation'>, callback: AsyncCallback<void>): void

设置导航栏、状态栏的可见模式,使用callback异步回调。

系统能力: SystemCapability.WindowManager.WindowManager.Core

参数:

参数名

类型

必填

说明

names

Array<'status'|'navigation'>

设置状态栏和导航栏是否显示。

例如,需全部显示,该参数设置为['status', 'navigation'];不设置,则默认不显示。

callback

AsyncCallback<void>

回调函数。

错误码:

以下错误码的详细介绍请参见窗口错误码

错误码ID

错误信息

1300002

This window state is abnormal.

1300003

This window manager service works abnormally.

示例:

  1. // 此处以不显示导航栏、状态栏为例
  2. let names = [];
  3. try {
  4. windowClass.setWindowSystemBarEnable(names, (err) => {
  5. if (err.code) {
  6. console.error('Failed to set the system bar to be invisible. Cause:' + JSON.stringify(err));
  7. return;
  8. }
  9. console.info('Succeeded in setting the system bar to be invisible.');
  10. });
  11. } catch (exception) {
  12. console.error('Failed to set the system bar to be invisible. Cause:' + JSON.stringify(exception));
  13. }

setWindowSystemBarEnable9+

setWindowSystemBarEnable(names: Array<'status' | 'navigation'>): Promise<void>

设置导航栏、状态栏的可见模式,使用Promise异步回调。

系统能力: SystemCapability.WindowManager.WindowManager.Core

参数:

参数名

类型

必填

说明

names

Array<'status'|'navigation'>

设置状态栏和导航栏是否显示。

例如,需全部显示,该参数设置为['status', 'navigation'];不设置,则默认不显示。

返回值:

类型

说明

Promise<void>

无返回结果的Promise对象。

错误码:

以下错误码的详细介绍请参见窗口错误码

错误码ID

错误信息

1300002

This window state is abnormal.

1300003

This window manager service works abnormally.

示例:

  1. // 此处以不显示导航栏、状态栏为例
  2. let names = [];
  3. try {
  4. let promise = windowClass.setWindowSystemBarEnable(names);
  5. promise.then(()=> {
  6. console.info('Succeeded in setting the system bar to be invisible.');
  7. }).catch((err)=>{
  8. console.error('Failed to set the system bar to be invisible. Cause:' + JSON.stringify(err));
  9. });
  10. } catch (exception) {
  11. console.error('Failed to set the system bar to be invisible. Cause:' + JSON.stringify(exception));
  12. }

setWindowSystemBarProperties9+

setWindowSystemBarProperties(systemBarProperties: SystemBarProperties, callback: AsyncCallback<void>): void

设置窗口内导航栏、状态栏的属性,使用callback异步回调。

说明

当前HarmonyOS设备均不支持此接口,应用调用此接口将返回801错误码。

系统能力: SystemCapability.WindowManager.WindowManager.Core

参数:

参数名

类型

必填

说明

SystemBarProperties

SystemBarProperties

导航栏、状态栏的属性。

callback

AsyncCallback<void>

回调函数。

错误码:

以下错误码的详细介绍请参见窗口错误码

错误码ID

错误信息

1300002

This window state is abnormal.

1300003

This window manager service works abnormally.

示例:

  1. let SystemBarProperties = {
  2. statusBarColor: '#ff00ff',
  3. navigationBarColor: '#00ff00',
  4. //以下两个属性从API Version8开始支持
  5. statusBarContentColor:'#ffffff',
  6. navigationBarContentColor:'#00ffff'
  7. };
  8. try {
  9. windowClass.setWindowSystemBarProperties(SystemBarProperties, (err) => {
  10. if (err.code) {
  11. console.error('Failed to set the system bar properties. Cause: ' + JSON.stringify(err));
  12. return;
  13. }
  14. console.info('Succeeded in setting the system bar properties.');
  15. });
  16. } catch (exception) {
  17. console.error('Failed to set the system bar properties. Cause: ' + JSON.stringify(exception));
  18. }

setWindowSystemBarProperties9+

setWindowSystemBarProperties(systemBarProperties: SystemBarProperties): Promise<void>

设置窗口内导航栏、状态栏的属性,使用Promise异步回调。

说明

当前HarmonyOS设备均不支持此接口,应用调用此接口将返回801错误码。

系统能力: SystemCapability.WindowManager.WindowManager.Core

参数:

参数名

类型

必填

说明

SystemBarProperties

SystemBarProperties

导航栏、状态栏的属性。

返回值:

类型

说明

Promise<void>

无返回结果的Promise对象。

错误码:

以下错误码的详细介绍请参见窗口错误码

错误码ID

错误信息

1300002

This window state is abnormal.

1300003

This window manager service works abnormally.

示例:

  1. let SystemBarProperties = {
  2. statusBarColor: '#ff00ff',
  3. navigationBarColor: '#00ff00',
  4. //以下两个属性从API Version8开始支持
  5. statusBarContentColor:'#ffffff',
  6. navigationBarContentColor:'#00ffff'
  7. };
  8. try {
  9. let promise = windowClass.setWindowSystemBarProperties(SystemBarProperties);
  10. promise.then(()=> {
  11. console.info('Succeeded in setting the system bar properties.');
  12. }).catch((err)=>{
  13. console.error('Failed to set the system bar properties. Cause: ' + JSON.stringify(err));
  14. });
  15. } catch (exception) {
  16. console.error('Failed to set the system bar properties. Cause: ' + JSON.stringify(exception));
  17. }

setPreferredOrientation9+

setPreferredOrientation(orientation: Orientation, callback: AsyncCallback<void>): void

设置窗口的显示方向属性,使用callback异步回调。

系统能力: SystemCapability.WindowManager.WindowManager.Core

参数:

参数名

类型

必填

说明

Orientation

Orientation

窗口显示方向的属性。

callback

AsyncCallback<void>

回调函数。

错误码:

以下错误码的详细介绍请参见窗口错误码

错误码ID

错误信息

1300002

This window state is abnormal.

示例:

  1. let orientation = window.Orientation.AUTO_ROTATION;
  2. try {
  3. windowClass.setPreferredOrientation(orientation, (err) => {
  4. if (err.code) {
  5. console.error('Failed to set window orientation. Cause: ' + JSON.stringify(err));
  6. return;
  7. }
  8. console.info('Succeeded in setting window orientation.');
  9. });
  10. } catch (exception) {
  11. console.error('Failed to set window orientation. Cause: ' + JSON.stringify(exception));
  12. }

setPreferredOrientation9+

setPreferredOrientation(orientation: Orientation): Promise<void>

设置窗口的显示方向属性,使用Promise异步回调。

系统能力: SystemCapability.WindowManager.WindowManager.Core

参数:

参数名

类型

必填

说明

Orientation

Orientation

窗口显示方向的属性。

返回值:

类型

说明

Promise<void>

无返回结果的Promise对象。

错误码:

以下错误码的详细介绍请参见窗口错误码

错误码ID

错误信息

1300002

This window state is abnormal.

示例:

  1. let orientation = window.Orientation.AUTO_ROTATION;
  2. try {
  3. let promise = windowClass.setPreferredOrientation(orientation);
  4. promise.then(()=> {
  5. console.info('Succeeded in setting the window orientation.');
  6. }).catch((err)=>{
  7. console.error('Failed to set the window orientation. Cause: ' + JSON.stringify(err));
  8. });
  9. } catch (exception) {
  10. console.error('Failed to set window orientation. Cause: ' + JSON.stringify(exception));
  11. }

setUIContent9+

setUIContent(path: string, callback: AsyncCallback<void>): void

为当前窗口加载具体页面内容,使用callback异步回调。

系统能力: SystemCapability.WindowManager.WindowManager.Core

参数:

参数名

类型

必填

说明

path

string

要加载到窗口中的页面内容的路径,Stage模型下该路径需添加到工程的main_pages.json文件中,FA模型下该路径需添加到工程的config.json文件中。

callback

AsyncCallback<void>

回调函数。

错误码:

以下错误码的详细介绍请参见窗口错误码

错误码ID

错误信息

1300002

This window state is abnormal.

1300003

This window manager service works abnormally.

示例:

  1. try {
  2. windowClass.setUIContent('pages/page2/page2', (err) => {
  3. if (err.code) {
  4. console.error('Failed to load the content. Cause:' + JSON.stringify(err));
  5. return;
  6. }
  7. console.info('Succeeded in loading the content.');
  8. });
  9. } catch (exception) {
  10. console.error('Failed to load the content. Cause:' + JSON.stringify(exception));
  11. }

setUIContent9+

setUIContent(path: string): Promise<void>

为当前窗口加载具体页面内容,使用Promise异步回调。

系统能力: SystemCapability.WindowManager.WindowManager.Core

参数:

参数名

类型

必填

说明

path

string

要加载到窗口中的页面内容的路径,Stage模型下该路径需添加到工程的main_pages.json文件中,FA模型下该路径需添加到工程的config.json文件中。

返回值:

类型

说明

Promise<void>

无返回结果的Promise对象。

错误码:

以下错误码的详细介绍请参见窗口错误码

错误码ID

错误信息

1300002

This window state is abnormal.

1300003

This window manager service works abnormally.

示例:

  1. try {
  2. let promise = windowClass.setUIContent('pages/page2/page2');
  3. promise.then(()=> {
  4. console.info('Succeeded in loading the content.');
  5. }).catch((err)=>{
  6. console.error('Failed to load the content. Cause: ' + JSON.stringify(err));
  7. });
  8. } catch (exception) {
  9. console.error('Failed to load the content. Cause: ' + JSON.stringify(exception));
  10. }

loadContent9+

loadContent(path: string, storage: LocalStorage, callback: AsyncCallback<void>): void

为当前窗口加载与LocalStorage相关联的具体页面内容,使用callback异步回调。

模型约束: 此接口仅可在Stage模型下使用。

系统能力: SystemCapability.WindowManager.WindowManager.Core

参数:

参数名

类型

必填

说明

path

string

要加载到窗口中的页面内容的路径,该路径需添加到工程的main_pages.json文件中。

storage

LocalStorage

存储单元,为应用程序范围内的可变状态属性和非可变状态属性提供存储。

callback

AsyncCallback<void>

回调函数。

错误码:

以下错误码的详细介绍请参见窗口错误码

错误码ID

错误信息

1300002

This window state is abnormal.

1300003

This window manager service works abnormally.

示例:

  1. let storage = new LocalStorage();
  2. storage.setOrCreate('storageSimpleProp',121);
  3. console.log('onWindowStageCreate');
  4. try {
  5. windowClass.loadContent('pages/page2', storage, (err) => {
  6. if (err.code) {
  7. console.error('Failed to load the content. Cause:' + JSON.stringify(err));
  8. return;
  9. }
  10. console.info('Succeeded in loading the content.');
  11. });
  12. } catch (exception) {
  13. console.error('Failed to load the content. Cause:' + JSON.stringify(exception));
  14. }

loadContent9+

loadContent(path: string, storage: LocalStorage): Promise<void>

为当前窗口加载与LocalStorage相关联的具体页面内容,使用Promise异步回调。

模型约束: 此接口仅可在Stage模型下使用。

系统能力: SystemCapability.WindowManager.WindowManager.Core

参数:

参数名

类型

必填

说明

path

string

要加载到窗口中的页面内容的路径,该路径需添加到工程的main_pages.json文件中。

storage

LocalStorage

存储单元,为应用程序范围内的可变状态属性和非可变状态属性提供存储。

返回值:

类型

说明

Promise<void>

无返回结果的Promise对象。

错误码:

以下错误码的详细介绍请参见窗口错误码

错误码ID

错误信息

1300002

This window state is abnormal.

1300003

This window manager service works abnormally.

示例:

  1. let storage = new LocalStorage();
  2. storage.setOrCreate('storageSimpleProp',121);
  3. console.log('onWindowStageCreate');
  4. try {
  5. let promise = windowClass.loadContent('pages/page2', storage);
  6. promise.then(() => {
  7. console.info('Succeeded in loading the content.');
  8. }).catch((err) => {
  9. console.error('Failed to load the content. Cause:' + JSON.stringify(err));
  10. });
  11. } catch (exception) {
  12. console.error('Failed to load the content. Cause:' + JSON.stringify(exception));
  13. }

isWindowShowing9+

isWindowShowing(): boolean

判断当前窗口是否已显示。

系统能力: SystemCapability.WindowManager.WindowManager.Core

返回值:

类型

说明

boolean

当前窗口是否已显示。true表示当前窗口已显示,false则表示当前窗口未显示。

错误码:

以下错误码的详细介绍请参见窗口错误码

错误码ID

错误信息

1300002

This window state is abnormal.

示例:

  1. try {
  2. let data = windowClass.isWindowShowing();
  3. console.info('Succeeded in checking whether the window is showing. Data: ' + JSON.stringify(data));
  4. } catch (exception) {
  5. console.error('Failed to check whether the window is showing. Cause: ' + JSON.stringify(exception));
  6. }

on('windowSizeChange')7+

on(type: 'windowSizeChange', callback: Callback<Size>): void

开启窗口尺寸变化的监听。

系统能力: SystemCapability.WindowManager.WindowManager.Core

参数:

参数名

类型

必填

说明

type

string

监听事件,固定为'windowSizeChange',即窗口尺寸变化事件。

callback

Callback<Size>

回调函数。返回当前的窗口尺寸。

示例:

  1. try {
  2. windowClass.on('windowSizeChange', (data) => {
  3. console.info('Succeeded in enabling the listener for window size changes. Data: ' + JSON.stringify(data));
  4. });
  5. } catch (exception) {
  6. console.error('Failed to enable the listener for window size changes. Cause: ' + JSON.stringify(exception));
  7. }

off('windowSizeChange')7+

off(type: 'windowSizeChange', callback?: Callback<Size>): void

关闭窗口尺寸变化的监听。

系统能力: SystemCapability.WindowManager.WindowManager.Core

参数:

参数名

类型

必填

说明

type

string

监听事件,固定为'windowSizeChange',即窗口尺寸变化事件。

callback

Callback<Size>

回调函数。返回当前的窗口尺寸。

示例:

  1. try {
  2. windowClass.off('windowSizeChange');
  3. } catch (exception) {
  4. console.error('Failed to disable the listener for window size changes. Cause: ' + JSON.stringify(exception));
  5. }

on('avoidAreaChange')9+

on(type: 'avoidAreaChange', callback: Callback<{type: AvoidAreaType, area: AvoidArea}>): void

开启系统规避区变化的监听。

系统能力: SystemCapability.WindowManager.WindowManager.Core

参数:

参数名

类型

必填

说明

type

string

监听事件,固定为'avoidAreaChange',即系统规避区变化事件。

callback

Callback<{type: AvoidAreaType, area: AvoidArea}>

回调函数。返回当前规避区以及规避区类型。

示例:

  1. try {
  2. windowClass.on('avoidAreaChange', (data) => {
  3. console.info('Succeeded in enabling the listener for system avoid area changes. type:' +
  4. JSON.stringify(data.type) + ', area: ' + JSON.stringify(data.area));
  5. });
  6. } catch (exception) {
  7. console.error('Failed to enable the listener for system avoid area changes. Cause: ' + JSON.stringify(exception));
  8. }

off('avoidAreaChange')9+

off(type: 'avoidAreaChange', callback?: Callback<{type: AvoidAreaType, area: AvoidArea}>): void

关闭系统规避区变化的监听。

系统能力: SystemCapability.WindowManager.WindowManager.Core

参数:

参数名

类型

必填

说明

type

string

监听事件,固定为'avoidAreaChange',即系统规避区变化事件。

callback

Callback<{type: AvoidAreaType, area: AvoidArea}>

回调函数。返回当前规避区以及规避区类型。

示例:

  1. try {
  2. windowClass.off('avoidAreaChange');
  3. } catch (exception) {
  4. console.error('Failed to disable the listener for system avoid area changes. Cause: ' + JSON.stringify(exception));
  5. }

on('keyboardHeightChange')7+

on(type: 'keyboardHeightChange', callback: Callback<number>): void

开启键盘高度变化的监听。

系统能力: SystemCapability.WindowManager.WindowManager.Core

参数:

参数名

类型

必填

说明

type

string

监听事件,固定为'keyboardHeightChange',即键盘高度变化事件。

callback

Callback<number>

回调函数。返回当前的键盘高度。

示例:

  1. try {
  2. windowClass.on('keyboardHeightChange', (data) => {
  3. console.info('Succeeded in enabling the listener for keyboard height changes. Data: ' + JSON.stringify(data));
  4. });
  5. } catch (exception) {
  6. console.error('Failed to enable the listener for keyboard height changes. Cause: ' + JSON.stringify(exception));
  7. }

off('keyboardHeightChange')7+

off(type: 'keyboardHeightChange', callback?: Callback<number>): void

关闭键盘高度变化的监听。

系统能力: SystemCapability.WindowManager.WindowManager.Core

参数:

参数名

类型

必填

说明

type

string

监听事件,固定为'keyboardHeightChange',即键盘高度变化事件。

callback

Callback<number>

回调函数。返回当前的键盘高度。

示例:

  1. try {
  2. windowClass.off('keyboardHeightChange');
  3. } catch (exception) {
  4. console.error('Failed to disable the listener for keyboard height changes. Cause: ' + JSON.stringify(exception));
  5. }

on('screenshot')9+

on(type: 'screenshot', callback: Callback<void>): void

开启截屏事件的监听。

系统能力: SystemCapability.WindowManager.WindowManager.Core

参数:

参数名

类型

必填

说明

type

string

监听事件,固定为'screenshot',即截屏事件。

callback

Callback<void>

回调函数。发生截屏事件时的回调。

示例:

  1. try {
  2. windowClass.on('screenshot', () => {
  3. console.info('screenshot happened');
  4. });
  5. } catch (exception) {
  6. console.error('Failed to register callback. Cause: ' + JSON.stringify(exception));
  7. }

off('screenshot')9+

off(type: 'screenshot', callback?: Callback<void>): void

关闭截屏事件的监听。

系统能力: SystemCapability.WindowManager.WindowManager.Core

参数:

参数名

类型

必填

说明

type

string

监听事件,固定为'screenshot',即截屏事件。

callback

Callback<void>

回调函数。发生截屏事件时的回调。

示例:

  1. let callback = () => {
  2. console.info('screenshot happened');
  3. };
  4. try {
  5. windowClass.on('screenshot', callback);
  6. } catch (exception) {
  7. console.error('Failed to register callback. Cause: ' + JSON.stringify(exception));
  8. }
  9. try {
  10. windowClass.off('screenshot', callback);
  11. // 如果通过on开启多个callback进行监听,同时关闭所有监听:
  12. windowClass.off('screenshot');
  13. } catch (exception) {
  14. console.error('Failed to unregister callback. Cause: ' + JSON.stringify(exception));
  15. }

isWindowSupportWideGamut9+

isWindowSupportWideGamut(callback: AsyncCallback<boolean>): void

判断当前窗口是否支持广色域模式,使用callback异步回调。

系统能力: SystemCapability.WindowManager.WindowManager.Core

参数:

参数名

类型

必填

说明

callback

AsyncCallback<boolean>

回调函数。返回true表示当前窗口支持广色域模式,返回false表示当前窗口不支持广色域模式。

错误码:

以下错误码的详细介绍请参见窗口错误码

错误码ID

错误信息

1300002

This window state is abnormal.

示例:

  1. windowClass.isWindowSupportWideGamut((err, data) => {
  2. if (err.code) {
  3. console.error('Failed to check whether the window support WideGamut. Cause:' + JSON.stringify(err));
  4. return;
  5. }
  6. console.info('Succeeded in checking whether the window support WideGamut Data: ' + JSON.stringify(data));
  7. });

isWindowSupportWideGamut9+

isWindowSupportWideGamut(): Promise<boolean>

判断当前窗口是否支持广色域模式,使用Promise异步回调。

系统能力: SystemCapability.WindowManager.WindowManager.Core

返回值:

类型

说明

Promise<boolean>

Promise对象。返回true表示当前窗口支持广色域模式,返回false表示当前窗口不支持广色域模式。

错误码:

以下错误码的详细介绍请参见窗口错误码

错误码ID

错误信息

1300002

This window state is abnormal.

示例:

  1. let promise = windowClass.isWindowSupportWideGamut();
  2. promise.then((data)=> {
  3. console.info('Succeeded in checking whether the window support WideGamut. Data: ' + JSON.stringify(data));
  4. }).catch((err)=>{
  5. console.error('Failed to check whether the window support WideGamut. Cause: ' + JSON.stringify(err));
  6. });

setWindowColorSpace9+

setWindowColorSpace(colorSpace:ColorSpace, callback: AsyncCallback<void>): void

设置当前窗口为广色域模式或默认色域模式,使用callback异步回调。

系统能力: SystemCapability.WindowManager.WindowManager.Core

参数:

参数名

类型

必填

说明

colorSpace

ColorSpace

设置色域模式。

callback

AsyncCallback<void>

回调函数。

错误码:

以下错误码的详细介绍请参见窗口错误码

错误码ID

错误信息

1300002

This window state is abnormal.

示例:

  1. try {
  2. windowClass.setWindowColorSpace(window.ColorSpace.WIDE_GAMUT, (err) => {
  3. if (err.code) {
  4. console.error('Failed to set window colorspace. Cause:' + JSON.stringify(err));
  5. return;
  6. }
  7. console.info('Succeeded in setting window colorspace.');
  8. });
  9. } catch (exception) {
  10. console.error('Failed to set window colorspace. Cause:' + JSON.stringify(exception));
  11. }

setWindowColorSpace9+

setWindowColorSpace(colorSpace:ColorSpace): Promise<void>

设置当前窗口为广色域模式或默认色域模式,使用Promise异步回调。

系统能力: SystemCapability.WindowManager.WindowManager.Core

参数:

参数名

类型

必填

说明

colorSpace

ColorSpace

设置色域模式。

返回值:

类型

说明

Promise<void>

无返回结果的Promise对象。

错误码:

以下错误码的详细介绍请参见窗口错误码

错误码ID

错误信息

1300002

This window state is abnormal.

示例:

  1. try {
  2. let promise = windowClass.setWindowColorSpace(window.ColorSpace.WIDE_GAMUT);
  3. promise.then(()=> {
  4. console.info('Succeeded in setting window colorspace.');
  5. }).catch((err)=>{
  6. console.error('Failed to set window colorspace. Cause: ' + JSON.stringify(err));
  7. });
  8. } catch (exception) {
  9. console.error('Failed to set window colorspace. Cause:' + JSON.stringify(exception));
  10. }

getWindowColorSpace9+

getWindowColorSpace(): ColorSpace

获取当前窗口色域模式。

系统能力: SystemCapability.WindowManager.WindowManager.Core

返回值:

类型

说明

ColorSpace

当前色域模式。

错误码:

以下错误码的详细介绍请参见窗口错误码

错误码ID

错误信息

1300002

This window state is abnormal.

示例:

  1. let colorSpace = windowClass.getWindowColorSpace();

setWindowBackgroundColor9+

setWindowBackgroundColor(color: string): void

设置窗口的背景色。Stage模型下,该接口需要在loadContentsetUIContent之后使用。

系统能力: SystemCapability.WindowManager.WindowManager.Core

参数:

参数名

类型

必填

说明

color

string

需要设置的背景色,为十六进制RGB或ARGB颜色,不区分大小写,例如#00FF00或#FF00FF00。

错误码:

以下错误码的详细介绍请参见窗口错误码

错误码ID

错误信息

1300002

This window state is abnormal.

示例:

  1. let color = '#00ff33';
  2. try {
  3. windowClass.setWindowBackgroundColor(color);
  4. } catch (exception) {
  5. console.error('Failed to set the background color. Cause: ' + JSON.stringify(exception));
  6. }

setWindowBrightness9+

setWindowBrightness(brightness: number, callback: AsyncCallback<void>): void

设置屏幕亮度值,使用callback异步回调。

当前屏幕亮度规格:窗口设置屏幕亮度生效时,控制中心不可以调整系统屏幕亮度,窗口恢复默认系统亮度之后,控制中心可以调整系统屏幕亮度。

系统能力: SystemCapability.WindowManager.WindowManager.Core

参数:

参数名

类型

必填

说明

brightness

number

屏幕亮度值,值为0-1之间。1表示最亮。

callback

AsyncCallback<void>

回调函数。

错误码:

以下错误码的详细介绍请参见窗口错误码

错误码ID

错误信息

1300002

This window state is abnormal.

1300003

This window manager service works abnormally.

示例:

  1. let brightness = 1;
  2. try {
  3. windowClass.setWindowBrightness(brightness, (err) => {
  4. if (err.code) {
  5. console.error('Failed to set the brightness. Cause: ' + JSON.stringify(err));
  6. return;
  7. }
  8. console.info('Succeeded in setting the brightness.');
  9. });
  10. } catch (exception) {
  11. console.error('Failed to set the brightness. Cause: ' + JSON.stringify(exception));
  12. }

setWindowBrightness9+

setWindowBrightness(brightness: number): Promise<void>

设置屏幕亮度值,使用Promise异步回调。

当前屏幕亮度规格:窗口设置屏幕亮度生效时,控制中心不可以调整系统屏幕亮度,窗口恢复默认系统亮度之后,控制中心可以调整系统屏幕亮度。

系统能力: SystemCapability.WindowManager.WindowManager.Core

参数:

参数名

类型

必填

说明

brightness

number

屏幕亮度值,值为0-1之间。1表示最亮。

返回值:

类型

说明

Promise<void>

无返回结果的Promise对象。

错误码:

以下错误码的详细介绍请参见窗口错误码

错误码ID

错误信息

1300002

This window state is abnormal.

1300003

This window manager service works abnormally.

示例:

  1. let brightness = 1;
  2. try {
  3. let promise = windowClass.setWindowBrightness(brightness);
  4. promise.then(()=> {
  5. console.info('Succeeded in setting the brightness.');
  6. }).catch((err)=>{
  7. console.error('Failed to set the brightness. Cause: ' + JSON.stringify(err));
  8. });
  9. } catch (exception) {
  10. console.error('Failed to set the brightness. Cause: ' + JSON.stringify(exception));
  11. }

setWindowFocusable9+

setWindowFocusable(isFocusable: boolean, callback: AsyncCallback<void>): void

设置点击时是否支持切换焦点窗口,使用callback异步回调。

系统能力: SystemCapability.WindowManager.WindowManager.Core

参数:

参数名

类型

必填

说明

isFocusable

boolean

点击时是否支持切换焦点窗口。true表示支持;false表示不支持。

callback

AsyncCallback<void>

回调函数。

错误码:

以下错误码的详细介绍请参见窗口错误码

错误码ID

错误信息

1300002

This window state is abnormal.

1300003

This window manager service works abnormally.

示例:

  1. let isFocusable = true;
  2. try {
  3. windowClass.setWindowFocusable(isFocusable, (err) => {
  4. if (err.code) {
  5. console.error('Failed to set the window to be focusable. Cause:' + JSON.stringify(err));
  6. return;
  7. }
  8. console.info('Succeeded in setting the window to be focusable.');
  9. });
  10. } catch (exception) {
  11. console.error('Failed to set the window to be focusable. Cause:' + JSON.stringify(exception));
  12. }

setWindowFocusable9+

setWindowFocusable(isFocusable: boolean): Promise<void>

设置点击时是否支持切换焦点窗口,使用Promise异步回调。

系统能力: SystemCapability.WindowManager.WindowManager.Core

参数:

参数名

类型

必填

说明

isFocusable

boolean

点击时是否支持切换焦点窗口。true表示支持;false表示不支持。

返回值:

类型

说明

Promise<void>

无返回结果的Promise对象。

错误码:

以下错误码的详细介绍请参见窗口错误码

错误码ID

错误信息

1300002

This window state is abnormal.

1300003

This window manager service works abnormally.

示例:

  1. let isFocusable = true;
  2. try {
  3. let promise = windowClass.setWindowFocusable(isFocusable);
  4. promise.then(()=> {
  5. console.info('Succeeded in setting the window to be focusable.');
  6. }).catch((err)=>{
  7. console.error('Failed to set the window to be focusable. Cause: ' + JSON.stringify(err));
  8. });
  9. } catch (exception) {
  10. console.error('Failed to set the window to be focusable. Cause:' + JSON.stringify(exception));
  11. }

setWindowKeepScreenOn9+

setWindowKeepScreenOn(isKeepScreenOn: boolean, callback: AsyncCallback<void>): void

设置屏幕是否为常亮状态,使用callback异步回调。

系统能力: SystemCapability.WindowManager.WindowManager.Core

参数:

参数名

类型

必填

说明

isKeepScreenOn

boolean

设置屏幕是否为常亮状态。true表示常亮;false表示不常亮。

callback

AsyncCallback<void>

回调函数。

错误码:

以下错误码的详细介绍请参见窗口错误码

错误码ID

错误信息

1300002

This window state is abnormal.

1300003

This window manager service works abnormally.

示例:

  1. let isKeepScreenOn = true;
  2. try {
  3. windowClass.setWindowKeepScreenOn(isKeepScreenOn, (err) => {
  4. if (err.code) {
  5. console.error('Failed to set the screen to be always on. Cause: ' + JSON.stringify(err));
  6. return;
  7. }
  8. console.info('Succeeded in setting the screen to be always on.');
  9. });
  10. } catch (exception) {
  11. console.error('Failed to set the screen to be always on. Cause: ' + JSON.stringify(exception));
  12. }

setWindowKeepScreenOn9+

setWindowKeepScreenOn(isKeepScreenOn: boolean): Promise<void>

设置屏幕是否为常亮状态,使用Promise异步回调。

系统能力: SystemCapability.WindowManager.WindowManager.Core

参数:

参数名

类型

必填

说明

isKeepScreenOn

boolean

设置屏幕是否为常亮状态。true表示常亮;false表示不常亮。

返回值:

类型

说明

Promise<void>

无返回结果的Promise对象。

错误码:

以下错误码的详细介绍请参见窗口错误码

错误码ID

错误信息

1300002

This window state is abnormal.

1300003

This window manager service works abnormally.

示例:

  1. let isKeepScreenOn = true;
  2. try {
  3. let promise = windowClass.setWindowKeepScreenOn(isKeepScreenOn);
  4. promise.then(() => {
  5. console.info('Succeeded in setting the screen to be always on.');
  6. }).catch((err)=>{
  7. console.info('Failed to set the screen to be always on. Cause: ' + JSON.stringify(err));
  8. });
  9. } catch (exception) {
  10. console.error('Failed to set the screen to be always on. Cause: ' + JSON.stringify(exception));
  11. }

setWindowPrivacyMode9+

setWindowPrivacyMode(isPrivacyMode: boolean, callback: AsyncCallback<void>): void

设置窗口是否为隐私模式,使用callback异步回调。设置为隐私模式的窗口,窗口内容将无法被截屏或录屏。此接口可用于禁止截屏/录屏的场景。

系统能力: SystemCapability.WindowManager.WindowManager.Core

需要权限: ohos.permission.PRIVACY_WINDOW

参数:

参数名

类型

必填

说明

isPrivacyMode

boolean

窗口是否为隐私模式。true表示模式开启;false表示模式关闭。

callback

AsyncCallback<void>

回调函数。

错误码:

以下错误码的详细介绍请参见窗口错误码

错误码ID

错误信息

1300002

This window state is abnormal.

示例:

  1. let isPrivacyMode = true;
  2. try {
  3. windowClass.setWindowPrivacyMode(isPrivacyMode, (err) => {
  4. if (err.code) {
  5. console.error('Failed to set the window to privacy mode. Cause:' + JSON.stringify(err));
  6. return;
  7. }
  8. console.info('Succeeded in setting the window to privacy mode.');
  9. });
  10. } catch (exception) {
  11. console.error('Failed to set the window to privacy mode. Cause:' + JSON.stringify(exception));
  12. }

setWindowPrivacyMode9+

setWindowPrivacyMode(isPrivacyMode: boolean): Promise<void>

设置窗口是否为隐私模式,使用Promise异步回调。设置为隐私模式的窗口,窗口内容将无法被截屏或录屏。此接口可用于禁止截屏/录屏的场景。

系统能力: SystemCapability.WindowManager.WindowManager.Core

需要权限: ohos.permission.PRIVACY_WINDOW

参数:

参数名

类型

必填

说明

isPrivacyMode

boolean

窗口是否为隐私模式。true表示模式开启;false表示模式关闭。

返回值:

类型

说明

Promise<void>

无返回结果的Promise对象。

错误码:

以下错误码的详细介绍请参见窗口错误码

错误码ID

错误信息

1300002

This window state is abnormal.

示例:

  1. let isPrivacyMode = true;
  2. try {
  3. let promise = windowClass.setWindowPrivacyMode(isPrivacyMode);
  4. promise.then(()=> {
  5. console.info('Succeeded in setting the window to privacy mode.');
  6. }).catch((err)=>{
  7. console.error('Failed to set the window to privacy mode. Cause: ' + JSON.stringify(err));
  8. });
  9. } catch (exception) {
  10. console.error('Failed to set the window to privacy mode. Cause:' + JSON.stringify(exception));
  11. }

setWindowTouchable9+

setWindowTouchable(isTouchable: boolean, callback: AsyncCallback<void>): void

设置窗口是否为可触状态,使用callback异步回调。

系统能力: SystemCapability.WindowManager.WindowManager.Core

参数:

参数名

类型

必填

说明

isTouchable

boolean

窗口是否为可触状态。true表示可触;false表示不可触。

callback

AsyncCallback<void>

回调函数。

错误码:

以下错误码的详细介绍请参见窗口错误码

错误码ID

错误信息

1300002

This window state is abnormal.

1300003

This window manager service works abnormally.

示例:

  1. let isTouchable = true;
  2. try {
  3. windowClass.setWindowTouchable(isTouchable, (err) => {
  4. if (err.code) {
  5. console.error('Failed to set the window to be touchable. Cause:' + JSON.stringify(err));
  6. return;
  7. }
  8. console.info('Succeeded in setting the window to be touchable.');
  9. });
  10. } catch (exception) {
  11. console.error('Failed to set the window to be touchable. Cause:' + JSON.stringify(exception));
  12. }

setWindowTouchable9+

setWindowTouchable(isTouchable: boolean): Promise<void>

设置窗口是否为可触状态,使用Promise异步回调。

系统能力: SystemCapability.WindowManager.WindowManager.Core

参数:

参数名

类型

必填

说明

isTouchable

boolean

窗口是否为可触状态。true表示可触;false表示不可触。

返回值:

类型

说明

Promise<void>

无返回结果的Promise对象。

错误码:

以下错误码的详细介绍请参见窗口错误码

错误码ID

错误信息

1300002

This window state is abnormal.

1300003

This window manager service works abnormally.

示例:

  1. let isTouchable = true;
  2. try {
  3. let promise = windowClass.setWindowTouchable(isTouchable);
  4. promise.then(()=> {
  5. console.info('Succeeded in setting the window to be touchable.');
  6. }).catch((err)=>{
  7. console.error('Failed to set the window to be touchable. Cause: ' + JSON.stringify(err));
  8. });
  9. } catch (exception) {
  10. console.error('Failed to set the window to be touchable. Cause:' + JSON.stringify(exception));
  11. }

snapshot9+

snapshot(callback: AsyncCallback<image.PixelMap>): void

获取窗口截图,使用callback异步回调。

系统能力: SystemCapability.WindowManager.WindowManager.Core

参数:

参数名

类型

必填

说明

callback

AsyncCallback<image.PixelMap>

回调函数。

错误码:

以下错误码的详细介绍请参见窗口错误码

错误码ID

错误信息

1300002

This window state is abnormal.

示例:

  1. windowClass.snapshot((err, pixelMap) => {
  2. if (err.code) {
  3. console.error('Failed to snapshot window. Cause:' + JSON.stringify(err));
  4. return;
  5. }
  6. console.info('Succeeded in snapshotting window. Pixel bytes number: ' + pixelMap.getPixelBytesNumber());
  7. pixelMap.release(); // PixelMap使用完后及时释放内存
  8. });

snapshot9+

snapshot(): Promise<image.PixelMap>

获取窗口截图,使用Promise异步回调。

系统能力: SystemCapability.WindowManager.WindowManager.Core

返回值:

类型

说明

Promise<image.PixelMap>

Promise对象。返回当前窗口截图。

错误码:

以下错误码的详细介绍请参见窗口错误码

错误码ID

错误信息

1300002

This window state is abnormal.

示例:

  1. let promise = windowClass.snapshot();
  2. promise.then((pixelMap)=> {
  3. console.info('Succeeded in snapshotting window. Pixel bytes number: ' + pixelMap.getPixelBytesNumber());
  4. pixelMap.release(); // PixelMap使用完后及时释放内存
  5. }).catch((err)=>{
  6. console.error('Failed to snapshot window. Cause:' + JSON.stringify(err));
  7. });

show(deprecated)

show(callback: AsyncCallback<void>): void

显示当前窗口,使用callback异步回调。

说明

从 API version 7开始支持,从API version 9开始废弃,推荐使用showWindow()

系统能力: SystemCapability.WindowManager.WindowManager.Core

参数:

参数名

类型

必填

说明

callback

AsyncCallback<void>

回调函数。

示例:

  1. windowClass.show((err) => {
  2. if (err.code) {
  3. console.error('Failed to show the window. Cause: ' + JSON.stringify(err));
  4. return;
  5. }
  6. console.info('Succeeded in showing the window.');
  7. });

show(deprecated)

show(): Promise<void>

显示当前窗口,使用Promise异步回调。

说明

从 API version 7开始支持,从API version 9开始废弃,推荐使用showWindow()

系统能力: SystemCapability.WindowManager.WindowManager.Core

返回值:

类型

说明

Promise<void>

无返回结果的Promise对象。

示例:

  1. let promise = windowClass.show();
  2. promise.then(()=> {
  3. console.info('Succeeded in showing the window.');
  4. }).catch((err)=>{
  5. console.error('Failed to show the window. Cause: ' + JSON.stringify(err));
  6. });

destroy(deprecated)

destroy(callback: AsyncCallback<void>): void

销毁当前窗口,使用callback异步回调。

说明

从 API version 7开始支持,从API version 9开始废弃,推荐使用destroyWindow()

系统能力: SystemCapability.WindowManager.WindowManager.Core

参数:

参数名

类型

必填

说明

callback

AsyncCallback<void>

回调函数。

示例:

  1. windowClass.destroy((err) => {
  2. if (err.code) {
  3. console.error('Failed to destroy the window. Cause:' + JSON.stringify(err));
  4. return;
  5. }
  6. console.info('Succeeded in destroying the window.');
  7. });

destroy(deprecated)

destroy(): Promise<void>

销毁当前窗口,使用Promise异步回调。

说明

从 API version 7开始支持,从API version 9开始废弃,推荐使用destroyWindow()

系统能力: SystemCapability.WindowManager.WindowManager.Core

返回值:

类型

说明

Promise<void>

无返回结果的Promise对象。

示例:

  1. let promise = windowClass.destroy();
  2. promise.then(()=> {
  3. console.info('Succeeded in destroying the window.');
  4. }).catch((err)=>{
  5. console.error('Failed to destroy the window. Cause: ' + JSON.stringify(err));
  6. });

moveTo(deprecated)

moveTo(x: number, y: number, callback: AsyncCallback<void>): void

移动窗口位置,使用callback异步回调。

全屏模式窗口不支持该操作。

说明

从 API version 7开始支持,从API version 9开始废弃,推荐使用moveWindowTo()

系统能力: SystemCapability.WindowManager.WindowManager.Core

参数:

参数名

类型

必填

说明

x

number

窗口在x轴方向移动的值,值为正表示右移,单位为px。

y

number

窗口在y轴方向移动的值,值为正表示下移,单位为px。

callback

AsyncCallback<void>

回调函数。

示例:

  1. windowClass.moveTo(300, 300, (err)=>{
  2. if (err.code) {
  3. console.error('Failed to move the window. Cause:' + JSON.stringify(err));
  4. return;
  5. }
  6. console.info('Succeeded in moving the window.');
  7. });

moveTo(deprecated)

moveTo(x: number, y: number): Promise<void>

移动窗口位置,使用Promise异步回调。

全屏模式窗口不支持该操作。

说明

从 API version 7开始支持,从API version 9开始废弃,推荐使用moveWindowTo()

系统能力: SystemCapability.WindowManager.WindowManager.Core

参数:

参数名

类型

必填

说明

x

number

窗口在x轴方向移动的值,值为正表示右移,单位为px。

y

number

窗口在y轴方向移动的值,值为正表示下移,单位为px。

返回值:

类型

说明

Promise<void>

无返回结果的Promise对象。

示例:

  1. let promise = windowClass.moveTo(300, 300);
  2. promise.then(()=> {
  3. console.info('Succeeded in moving the window.');
  4. }).catch((err)=>{
  5. console.error('Failed to move the window. Cause: ' + JSON.stringify(err));
  6. });

resetSize(deprecated)

resetSize(width: number, height: number, callback: AsyncCallback<void>): void

改变当前窗口大小,使用callback异步回调。

应用主窗口与子窗口存在大小限制,宽度范围:[320, 2560],高度范围:[240, 2560],单位为vp。

系统窗口存在大小限制,宽度范围:[0, 2560],高度范围:[0, 2560],单位为vp。

设置的宽度与高度受到此约束限制,规则: 若所设置的窗口宽/高尺寸小于窗口最小宽/高限值,则窗口最小宽/高限值生效; 若所设置的窗口宽/高尺寸大于窗口最大宽/高限值,则窗口最大宽/高限值生效。

全屏模式窗口不支持该操作。

说明

从 API version 7开始支持,从API version 9开始废弃,推荐使用resize()

系统能力: SystemCapability.WindowManager.WindowManager.Core

参数:

参数名

类型

必填

说明

width

number

目标窗口的宽度,单位为px。

height

number

目标窗口的高度,单位为px。

callback

AsyncCallback<void>

回调函数。

示例:

  1. windowClass.resetSize(500, 1000, (err) => {
  2. if (err.code) {
  3. console.error('Failed to change the window size. Cause:' + JSON.stringify(err));
  4. return;
  5. }
  6. console.info('Succeeded in changing the window size.');
  7. });

resetSize(deprecated)

resetSize(width: number, height: number): Promise<void>

改变当前窗口大小,使用Promise异步回调。

应用主窗口与子窗口存在大小限制,宽度范围:[320, 2560],高度范围:[240, 2560],单位为vp。

系统窗口存在大小限制,宽度范围:[0, 2560],高度范围:[0, 2560],单位为vp。

设置的宽度与高度受到此约束限制,规则: 若所设置的窗口宽/高尺寸小于窗口最小宽/高限值,则窗口最小宽/高限值生效; 若所设置的窗口宽/高尺寸大于窗口最大宽/高限值,则窗口最大宽/高限值生效。

全屏模式窗口不支持该操作。

说明

从 API version 7开始支持,从API version 9开始废弃,推荐使用resize()

系统能力: SystemCapability.WindowManager.WindowManager.Core

参数:

参数名

类型

必填

说明

width

number

目标窗口的宽度,单位为px。

height

number

目标窗口的高度,单位为px。

返回值:

类型

说明

Promise<void>

无返回结果的Promise对象。

示例:

  1. let promise = windowClass.resetSize(500, 1000);
  2. promise.then(()=> {
  3. console.info('Succeeded in changing the window size.');
  4. }).catch((err)=>{
  5. console.error('Failed to change the window size. Cause: ' + JSON.stringify(err));
  6. });

getProperties(deprecated)

getProperties(callback: AsyncCallback<WindowProperties>): void

获取当前窗口的属性,使用callback异步回调,返回WindowProperties。

说明

从 API version 6开始支持,从API version 9开始废弃,推荐使用getWindowProperties()

系统能力: SystemCapability.WindowManager.WindowManager.Core

参数:

参数名

类型

必填

说明

callback

AsyncCallback<WindowProperties>

回调函数。返回当前窗口属性。

示例:

  1. windowClass.getProperties((err, data) => {
  2. if (err.code) {
  3. console.error('Failed to obtain the window properties. Cause: ' + JSON.stringify(err));
  4. return;
  5. }
  6. console.info('Succeeded in obtaining the window properties. Data: ' + JSON.stringify(data));
  7. });

getProperties(deprecated)

getProperties(): Promise<WindowProperties>

获取当前窗口的属性,使用Promise异步回调,返回WindowProperties。

说明

从 API version 6开始支持,从API version 9开始废弃,推荐使用getWindowProperties()

系统能力: SystemCapability.WindowManager.WindowManager.Core

返回值:

类型

说明

Promise<WindowProperties>

Promise对象。返回当前窗口属性。

示例:

  1. let promise = windowClass.getProperties();
  2. promise.then((data)=> {
  3. console.info('Succeeded in obtaining the window properties. Data: ' + JSON.stringify(data));
  4. }).catch((err)=>{
  5. console.error('Failed to obtain the window properties. Cause: ' + JSON.stringify(err));
  6. });

getAvoidArea(deprecated)

getAvoidArea(type: AvoidAreaType, callback: AsyncCallback<AvoidArea>): void

获取窗口内容规避的区域;如系统栏区域、刘海屏区域、手势区域、软键盘区域等与窗口内容重叠时,需要窗口内容避让的区域。

说明

从 API version 7开始支持,从API version 9开始废弃,推荐使用getWindowAvoidArea()

系统能力: SystemCapability.WindowManager.WindowManager.Core

参数:

参数名

类型

必填

说明

type

AvoidAreaType

表示规避区类型。

callback

AsyncCallback<AvoidArea>

回调函数。返回窗口内容规避区域。

示例:

  1. let type = window.AvoidAreaType.TYPE_SYSTEM;
  2. windowClass.getAvoidArea(type, (err, data) => {
  3. if (err.code) {
  4. console.error('Failed to obtain the area. Cause:' + JSON.stringify(err));
  5. return;
  6. }
  7. console.info('Succeeded in obtaining the area. Data:' + JSON.stringify(data));
  8. });

getAvoidArea(deprecated)

getAvoidArea(type: AvoidAreaType): Promise<AvoidArea>

获取窗口内容规避的区域;如系统栏区域、刘海屏区域、手势区域、软键盘区域等与窗口内容重叠时,需要窗口内容避让的区域。

说明

从 API version 7开始支持,从API version 9开始废弃,推荐使用getWindowAvoidArea()

系统能力: SystemCapability.WindowManager.WindowManager.Core

参数:

参数名

类型

必填

说明

type

AvoidAreaType

表示规避区类型。

返回值:

类型

说明

Promise<AvoidArea>

Promise对象。返回窗口内容规避区域。

示例:

  1. let type = window.AvoidAreaType.TYPE_SYSTEM;
  2. let promise = windowClass.getAvoidArea(type);
  3. promise.then((data)=> {
  4. console.info('Succeeded in obtaining the area. Data:' + JSON.stringify(data));
  5. }).catch((err)=>{
  6. console.error('Failed to obtain the area. Cause:' + JSON.stringify(err));
  7. });

setFullScreen(deprecated)

setFullScreen(isFullScreen: boolean, callback: AsyncCallback<void>): void

设置是否为全屏状态,使用callback异步回调。

说明

从 API version 6开始支持,从API version 9开始废弃,推荐联合使用setWindowSystemBarEnable()setWindowLayoutFullScreen()实现全屏。

系统能力: SystemCapability.WindowManager.WindowManager.Core

参数:

参数名

类型

必填

说明

isFullScreen

boolean

是否设为全屏状态(该全屏状态隐藏状态栏导航栏)。true表示全屏;false表示非全屏。

callback

AsyncCallback<void>

回调函数。

示例:

  1. let isFullScreen = true;
  2. windowClass.setFullScreen(isFullScreen, (err) => {
  3. if (err.code) {
  4. console.error('Failed to enable the full-screen mode. Cause: ' + JSON.stringify(err));
  5. return;
  6. }
  7. console.info('Succeeded in enabling the full-screen mode.');
  8. });

setFullScreen(deprecated)

setFullScreen(isFullScreen: boolean): Promise<void>

设置是否为全屏状态,使用Promise异步回调。

说明

从 API version 6开始支持,从API version 9开始废弃,推荐联合使用setWindowSystemBarEnable()setWindowLayoutFullScreen()实现全屏。

系统能力: SystemCapability.WindowManager.WindowManager.Core

参数:

参数名

类型

必填

说明

isFullScreen

boolean

是否设为全屏状态(该全屏状态隐藏状态栏导航栏)。true表示全屏;false表示非全屏。

返回值:

类型

说明

Promise<void>

无返回结果的Promise对象。

示例:

  1. let isFullScreen = true;
  2. let promise = windowClass.setFullScreen(isFullScreen);
  3. promise.then(()=> {
  4. console.info('Succeeded in enabling the full-screen mode.');
  5. }).catch((err)=>{
  6. console.error('Failed to enable the full-screen mode. Cause: ' + JSON.stringify(err));
  7. });

setLayoutFullScreen(deprecated)

setLayoutFullScreen(isLayoutFullScreen: boolean, callback: AsyncCallback<void>): void

设置窗口的布局是否为全屏显示状态,使用callback异步回调。

说明

从 API version 7开始支持,从API version 9开始废弃,推荐使用setWindowLayoutFullScreen()

系统能力: SystemCapability.WindowManager.WindowManager.Core

参数:

参数名

类型

必填

说明

isLayoutFullScreen

boolean

窗口的布局是否为全屏显示状态(该全屏状态下状态栏、导航栏仍然显示)。true表示全屏;false表示非全屏。

callback

AsyncCallback<void>

回调函数。

示例:

  1. let isLayoutFullScreen= true;
  2. windowClass.setLayoutFullScreen(isLayoutFullScreen, (err) => {
  3. if (err.code) {
  4. console.error('Failed to set the window layout to full-screen mode. Cause:' + JSON.stringify(err));
  5. return;
  6. }
  7. console.info('Succeeded in setting the window layout to full-screen mode.');
  8. });

setLayoutFullScreen(deprecated)

setLayoutFullScreen(isLayoutFullScreen: boolean): Promise<void>

设置窗口的布局是否为全屏显示状态,使用Promise异步回调。

说明

从 API version 7开始支持,从API version 9开始废弃,推荐使用setWindowLayoutFullScreen()

系统能力: SystemCapability.WindowManager.WindowManager.Core

参数:

参数名

类型

必填

说明

isLayoutFullScreen

boolean

窗口的布局是否为全屏显示状态(该全屏状态下状态栏、导航栏仍然显示)。true表示全屏;false表示非全屏。

返回值:

类型

说明

Promise<void>

无返回结果的Promise对象。

示例:

  1. let isLayoutFullScreen = true;
  2. let promise = windowClass.setLayoutFullScreen(isLayoutFullScreen);
  3. promise.then(()=> {
  4. console.info('Succeeded in setting the window layout to full-screen mode.');
  5. }).catch((err)=>{
  6. console.error('Failed to set the window layout to full-screen mode. Cause:' + JSON.stringify(err));
  7. });

setSystemBarEnable(deprecated)

setSystemBarEnable(names: Array<'status' | 'navigation'>, callback: AsyncCallback<void>): void

设置导航栏、状态栏的可见模式,使用callback异步回调。

说明

从 API version 7开始支持,从API version 9开始废弃,推荐使用setWindowSystemBarEnable()

系统能力: SystemCapability.WindowManager.WindowManager.Core

参数:

参数名

类型

必填

说明

names

Array<'status'|'navigation'>

设置状态栏和导航栏是否显示。

例如,需全部显示,该参数设置为['status', 'navigation'];不设置,则默认不显示。

callback

AsyncCallback<void>

回调函数。

示例:

  1. // 此处以不显示导航栏、状态栏为例
  2. let names = [];
  3. windowClass.setSystemBarEnable(names, (err) => {
  4. if (err.code) {
  5. console.error('Failed to set the system bar to be invisible. Cause:' + JSON.stringify(err));
  6. return;
  7. }
  8. console.info('Succeeded in setting the system bar to be invisible.');
  9. });

setSystemBarEnable(deprecated)

setSystemBarEnable(names: Array<'status' | 'navigation'>): Promise<void>

设置导航栏、状态栏的可见模式,使用Promise异步回调。

说明

从 API version 7开始支持,从API version 9开始废弃,推荐使用setWindowSystemBarEnable()

系统能力: SystemCapability.WindowManager.WindowManager.Core

参数:

参数名

类型

必填

说明

names

Array<'status'|'navigation'>

设置状态栏和导航栏是否显示。

例如,需全部显示,该参数设置为['status', 'navigation'];不设置,则默认不显示。

返回值:

类型

说明

Promise<void>

无返回结果的Promise对象。

示例:

  1. // 此处以不显示导航栏、状态栏为例
  2. let names = [];
  3. let promise = windowClass.setSystemBarEnable(names);
  4. promise.then(()=> {
  5. console.info('Succeeded in setting the system bar to be invisible.');
  6. }).catch((err)=>{
  7. console.error('Failed to set the system bar to be invisible. Cause:' + JSON.stringify(err));
  8. });

setSystemBarProperties(deprecated)

setSystemBarProperties(systemBarProperties: SystemBarProperties, callback: AsyncCallback<void>): void

设置窗口内导航栏、状态栏的属性,使用callback异步回调。

说明
  • 从 API version 6开始支持,从API version 9开始废弃。
  • 此接口能力在HarmonyOS 3.1Release暂不支持。

系统能力: SystemCapability.WindowManager.WindowManager.Core

参数:

参数名

类型

必填

说明

SystemBarProperties

SystemBarProperties

导航栏、状态栏的属性。

callback

AsyncCallback<void>

回调函数。

示例:

  1. let SystemBarProperties={
  2. statusBarColor: '#ff00ff',
  3. navigationBarColor: '#00ff00',
  4. //以下两个属性从API Version8开始支持
  5. statusBarContentColor:'#ffffff',
  6. navigationBarContentColor:'#00ffff'
  7. };
  8. windowClass.setSystemBarProperties(SystemBarProperties, (err) => {
  9. if (err.code) {
  10. console.error('Failed to set the system bar properties. Cause: ' + JSON.stringify(err));
  11. return;
  12. }
  13. console.info('Succeeded in setting the system bar properties.');
  14. });

setSystemBarProperties(deprecated)

setSystemBarProperties(systemBarProperties: SystemBarProperties): Promise<void>

设置窗口内导航栏、状态栏的属性,使用Promise异步回调。

说明
  • 从 API version 6开始支持,从API version 9开始废弃。
  • 此接口能力在HarmonyOS 3.1Release暂不支持。

系统能力: SystemCapability.WindowManager.WindowManager.Core

参数:

参数名

类型

必填

说明

SystemBarProperties

SystemBarProperties

导航栏、状态栏的属性。

返回值:

类型

说明

Promise<void>

无返回结果的Promise对象。

示例:

  1. let SystemBarProperties={
  2. statusBarColor: '#ff00ff',
  3. navigationBarColor: '#00ff00',
  4. //以下两个属性从API Version8开始支持
  5. statusBarContentColor:'#ffffff',
  6. navigationBarContentColor:'#00ffff'
  7. };
  8. let promise = windowClass.setSystemBarProperties(SystemBarProperties);
  9. promise.then(()=> {
  10. console.info('Succeeded in setting the system bar properties.');
  11. }).catch((err)=>{
  12. console.error('Failed to set the system bar properties. Cause: ' + JSON.stringify(err));
  13. });

loadContent(deprecated)

loadContent(path: string, callback: AsyncCallback<void>): void

为当前窗口加载具体页面内容,使用callback异步回调。

说明

从 API version 7开始支持,从API version 9开始废弃,推荐使用setUIContent()

系统能力: SystemCapability.WindowManager.WindowManager.Core

参数:

参数名

类型

必填

说明

path

string

要加载到窗口中的页面内容的路径,Stage模型下该路径需添加到工程的main_pages.json文件中,FA模型下该路径需添加到工程的config.json文件中。

callback

AsyncCallback<void>

回调函数。

示例:

  1. windowClass.loadContent('pages/page2/page2', (err) => {
  2. if (err.code) {
  3. console.error('Failed to load the content. Cause:' + JSON.stringify(err));
  4. return;
  5. }
  6. console.info('Succeeded in loading the content.');
  7. });

loadContent(deprecated)

loadContent(path: string): Promise<void>

为当前窗口加载具体页面内容,使用Promise异步回调。

说明

从 API version 7开始支持,从API version 9开始废弃,推荐使用setUIContent()

系统能力: SystemCapability.WindowManager.WindowManager.Core

参数:

参数名

类型

必填

说明

path

string

要加载到窗口中的页面内容的路径,Stage模型下该路径需添加到工程的main_pages.json文件中,FA模型下该路径需添加到工程的config.json文件中。

返回值:

类型

说明

Promise<void>

无返回结果的Promise对象。

示例:

  1. let promise = windowClass.loadContent('pages/page2/page2');
  2. promise.then(()=> {
  3. console.info('Succeeded in loading the content.');
  4. }).catch((err)=>{
  5. console.error('Failed to load the content. Cause: ' + JSON.stringify(err));
  6. });

isShowing(deprecated)

isShowing(callback: AsyncCallback<boolean>): void

判断当前窗口是否已显示,使用callback异步回调。

说明

从 API version 7开始支持,从API version 9开始废弃,推荐使用isWindowShowing()

系统能力: SystemCapability.WindowManager.WindowManager.Core

参数:

参数名

类型

必填

说明

callback

AsyncCallback<boolean>

回调函数。返回true表示当前窗口已显示,返回false表示当前窗口未显示。

示例:

  1. windowClass.isShowing((err, data) => {
  2. if (err.code) {
  3. console.error('Failed to check whether the window is showing. Cause:' + JSON.stringify(err));
  4. return;
  5. }
  6. console.info('Succeeded in checking whether the window is showing. Data: ' + JSON.stringify(data));
  7. });

isShowing(deprecated)

isShowing(): Promise<boolean>

判断当前窗口是否已显示,使用Promise异步回调。

说明

从 API version 7开始支持,从API version 9开始废弃,推荐使用isWindowShowing()

系统能力: SystemCapability.WindowManager.WindowManager.Core

返回值:

类型

说明

Promise<boolean>

Promise对象。返回true表示当前窗口已显示,返回false表示当前窗口未显示。

示例:

  1. let promise = windowClass.isShowing();
  2. promise.then((data)=> {
  3. console.info('Succeeded in checking whether the window is showing. Data: ' + JSON.stringify(data));
  4. }).catch((err)=>{
  5. console.error('Failed to check whether the window is showing. Cause: ' + JSON.stringify(err));
  6. });

on('systemAvoidAreaChange')(deprecated)

on(type: 'systemAvoidAreaChange', callback: Callback<AvoidArea>): void

开启系统规避区变化的监听。

说明

从 API version 7开始支持,从API version 9开始废弃,推荐使用on('avoidAreaChange')

系统能力: SystemCapability.WindowManager.WindowManager.Core

参数:

参数名

类型

必填

说明

type

string

监听事件,固定为'systemAvoidAreaChange',即系统规避区变化事件。

callback

Callback<AvoidArea>

回调函数。返回当前规避区。

示例:

  1. windowClass.on('systemAvoidAreaChange', (data) => {
  2. console.info('Succeeded in enabling the listener for system avoid area changes. Data: ' + JSON.stringify(data));
  3. });

off('systemAvoidAreaChange')(deprecated)

off(type: 'systemAvoidAreaChange', callback?: Callback<AvoidArea>): void

关闭系统规避区变化的监听。

说明

从 API version 7开始支持,从API version 9开始废弃,推荐使用off('avoidAreaChange')

系统能力: SystemCapability.WindowManager.WindowManager.Core

参数:

参数名

类型

必填

说明

type

string

监听事件,固定为'systemAvoidAreaChange',即系统规避区变化事件。

callback

Callback<AvoidArea>

回调函数。返回当前规避区。

示例:

  1. windowClass.off('systemAvoidAreaChange');

isSupportWideGamut(deprecated)

isSupportWideGamut(callback: AsyncCallback<boolean>): void

判断当前窗口是否支持广色域模式,使用callback异步回调。

说明

从 API version 8开始支持,从API version 9开始废弃,推荐使用isWindowSupportWideGamut()

系统能力: SystemCapability.WindowManager.WindowManager.Core

参数:

参数名

类型

必填

说明

callback

AsyncCallback<boolean>

回调函数。返回true表示当前窗口支持广色域模式,返回false表示当前窗口不支持广色域模式。

示例:

  1. windowClass.isSupportWideGamut((err, data) => {
  2. if (err.code) {
  3. console.error('Failed to check whether the window support WideGamut. Cause:' + JSON.stringify(err));
  4. return;
  5. }
  6. console.info('Succeeded in checking whether the window support WideGamut Data: ' + JSON.stringify(data));
  7. });

isSupportWideGamut(deprecated)

isSupportWideGamut(): Promise<boolean>

判断当前窗口是否支持广色域模式,使用Promise异步回调。

说明

从 API version 8开始支持,从API version 9开始废弃,推荐使用isWindowSupportWideGamut()

系统能力: SystemCapability.WindowManager.WindowManager.Core

返回值:

类型

说明

Promise<boolean>

Promise对象。返回true表示当前窗口支持广色域模式,返回false表示当前窗口不支持广色域模式。

示例:

  1. let promise = windowClass.isSupportWideGamut();
  2. promise.then((data)=> {
  3. console.info('Succeeded in checking whether the window support WideGamut. Data: ' + JSON.stringify(data));
  4. }).catch((err)=>{
  5. console.error('Failed to check whether the window support WideGamut. Cause: ' + JSON.stringify(err));
  6. });

setColorSpace(deprecated)

setColorSpace(colorSpace:ColorSpace, callback: AsyncCallback<void>): void

设置当前窗口为广色域模式或默认色域模式,使用callback异步回调。

说明

从 API version 8开始支持,从API version 9开始废弃,推荐使用setWindowColorSpace()

系统能力: SystemCapability.WindowManager.WindowManager.Core

参数:

参数名

类型

必填

说明

colorSpace

ColorSpace

设置色域模式。

callback

AsyncCallback<void>

回调函数。

示例:

  1. windowClass.setColorSpace(window.ColorSpace.WIDE_GAMUT, (err) => {
  2. if (err.code) {
  3. console.error('Failed to set window colorspace. Cause:' + JSON.stringify(err));
  4. return;
  5. }
  6. console.info('Succeeded in setting window colorspace.');
  7. });

setColorSpace(deprecated)

setColorSpace(colorSpace:ColorSpace): Promise<void>

设置当前窗口为广色域模式或默认色域模式,使用Promise异步回调。

说明

从 API version 8开始支持,从API version 9开始废弃,推荐使用setWindowColorSpace()

系统能力: SystemCapability.WindowManager.WindowManager.Core

参数:

参数名

类型

必填

说明

colorSpace

ColorSpace

设置色域模式。

返回值:

类型

说明

Promise<void>

无返回结果的Promise对象。

示例:

  1. let promise = windowClass.setColorSpace(window.ColorSpace.WIDE_GAMUT);
  2. promise.then(()=> {
  3. console.info('Succeeded in setting window colorspace.');
  4. }).catch((err)=>{
  5. console.error('Failed to set window colorspace. Cause: ' + JSON.stringify(err));
  6. });

getColorSpace(deprecated)

getColorSpace(callback: AsyncCallback<ColorSpace>): void

获取当前窗口色域模式,使用callback异步回调。

说明

从 API version 8开始支持,从API version 9开始废弃,推荐使用getWindowColorSpace()

系统能力: SystemCapability.WindowManager.WindowManager.Core

参数:

参数名

类型

必填

说明

callback

AsyncCallback<ColorSpace>

回调函数。当获取成功,err为undefined,data为当前色域模式。

示例:

  1. windowClass.getColorSpace((err, data) => {
  2. if (err.code) {
  3. console.error('Failed to get window colorspace. Cause:' + JSON.stringify(err));
  4. return;
  5. }
  6. console.info('Succeeded in getting window colorspace. Cause:' + JSON.stringify(data));
  7. });

getColorSpace(deprecated)

getColorSpace(): Promise<ColorSpace>

获取当前窗口色域模式,使用Promise异步回调。

说明

从 API version 8开始支持,从API version 9开始废弃,推荐使用getWindowColorSpace()

系统能力: SystemCapability.WindowManager.WindowManager.Core

返回值:

类型

说明

Promise<ColorSpace>

Promise对象。返回当前色域模式。

示例:

  1. let promise = windowClass.getColorSpace();
  2. promise.then((data)=> {
  3. console.info('Succeeded in getting window color space. Cause:' + JSON.stringify(data));
  4. }).catch((err)=>{
  5. console.error('Failed to get window colorspace. Cause: ' + JSON.stringify(err));
  6. });

setBackgroundColor(deprecated)

setBackgroundColor(color: string, callback: AsyncCallback<void>): void

设置窗口的背景色,使用callback异步回调。Stage模型下,该接口需要在loadContentsetUIContent之后使用。

说明

从 API version 6开始支持,从API version 9开始废弃,推荐使用setWindowBackgroundColor()

系统能力: SystemCapability.WindowManager.WindowManager.Core

参数:

参数名

类型

必填

说明

color

string

需要设置的背景色,为十六进制RGB或ARGB颜色,不区分大小写,例如#00FF00或#FF00FF00。

callback

AsyncCallback<void>

回调函数。

示例:

  1. let color = '#00ff33';
  2. windowClass.setBackgroundColor(color, (err) => {
  3. if (err.code) {
  4. console.error('Failed to set the background color. Cause: ' + JSON.stringify(err));
  5. return;
  6. }
  7. console.info('Succeeded in setting the background color.');
  8. });

setBackgroundColor(deprecated)

setBackgroundColor(color: string): Promise<void>

设置窗口的背景色,使用Promise异步回调。Stage模型下,该接口需要在loadContentsetUIContent之后使用。

说明

从 API version 6开始支持,从API version 9开始废弃,推荐使用setWindowBackgroundColor()

系统能力: SystemCapability.WindowManager.WindowManager.Core

参数:

参数名

类型

必填

说明

color

string

需要设置的背景色,为十六进制RGB或ARGB颜色,不区分大小写,例如#00FF00或#FF00FF00。

返回值:

类型

说明

Promise<void>

无返回结果的Promise对象。

示例:

  1. let color = '#00ff33';
  2. let promise = windowClass.setBackgroundColor(color);
  3. promise.then(()=> {
  4. console.info('Succeeded in setting the background color.');
  5. }).catch((err)=>{
  6. console.error('Failed to set the background color. Cause: ' + JSON.stringify(err));
  7. });

setBrightness(deprecated)

setBrightness(brightness: number, callback: AsyncCallback<void>): void

设置屏幕亮度值,使用callback异步回调。

当前屏幕亮度规格:窗口设置屏幕亮度生效时,控制中心不可以调整系统屏幕亮度,窗口恢复默认系统亮度之后,控制中心可以调整系统屏幕亮度。

说明

从 API version 6开始支持,从API version 9开始废弃,推荐使用setWindowBrightness()

系统能力: SystemCapability.WindowManager.WindowManager.Core

参数:

参数名

类型

必填

说明

brightness

number

屏幕亮度值,值为0-1之间。1表示最亮。

callback

AsyncCallback<void>

回调函数。

示例:

  1. let brightness = 1;
  2. windowClass.setBrightness(brightness, (err) => {
  3. if (err.code) {
  4. console.error('Failed to set the brightness. Cause: ' + JSON.stringify(err));
  5. return;
  6. }
  7. console.info('Succeeded in setting the brightness.');
  8. });

setBrightness(deprecated)

setBrightness(brightness: number): Promise<void>

设置屏幕亮度值,使用Promise异步回调。

当前屏幕亮度规格:窗口设置屏幕亮度生效时,控制中心不可以调整系统屏幕亮度,窗口恢复默认系统亮度之后,控制中心可以调整系统屏幕亮度。

说明

从 API version 6开始支持,从API version 9开始废弃,推荐使用setWindowBrightness()

系统能力: SystemCapability.WindowManager.WindowManager.Core

参数:

参数名

类型

必填

说明

brightness

number

屏幕亮度值,值为0-1之间。1表示最亮。

返回值:

类型

说明

Promise<void>

无返回结果的Promise对象。

示例:

  1. let brightness = 1;
  2. let promise = windowClass.setBrightness(brightness);
  3. promise.then(()=> {
  4. console.info('Succeeded in setting the brightness.');
  5. }).catch((err)=>{
  6. console.error('Failed to set the brightness. Cause: ' + JSON.stringify(err));
  7. });

setDimBehind(deprecated)

setDimBehind(dimBehindValue: number, callback: AsyncCallback<void>): void

窗口叠加时,设备有子窗口的情况下设置靠后的窗口的暗度值,使用callback异步回调。

说明

该接口不支持使用。从 API version 7开始支持,从API version 9开始废弃。

系统能力: SystemCapability.WindowManager.WindowManager.Core

参数:

参数名

类型

必填

说明

dimBehindValue

number

表示靠后的窗口的暗度值,取值范围为0-1,1表示最暗。

callback

AsyncCallback<void>

回调函数。

示例:

  1. windowClass.setDimBehind(0.5, (err) => {
  2. if (err.code) {
  3. console.error('Failed to set the dimness. Cause: ' + JSON.stringify(err));
  4. return;
  5. }
  6. console.info('Succeeded in setting the dimness.');
  7. });

setDimBehind(deprecated)

setDimBehind(dimBehindValue: number): Promise<void>

窗口叠加时,设备有子窗口的情况下设置靠后的窗口的暗度值,使用Promise异步回调。

说明

该接口不支持使用。从 API version 7开始支持,从API version 9开始废弃。

系统能力: SystemCapability.WindowManager.WindowManager.Core

参数:

参数名

类型

必填

说明

dimBehindValue

number

表示靠后的窗口的暗度值,取值范围为0-1,1表示最暗。

返回值:

类型

说明

Promise<void>

无返回结果的Promise对象。

示例:

  1. let promise = windowClass.setDimBehind(0.5);
  2. promise.then(()=> {
  3. console.info('Succeeded in setting the dimness.');
  4. }).catch((err)=>{
  5. console.error('Failed to set the dimness. Cause: ' + JSON.stringify(err));
  6. });

setFocusable(deprecated)

setFocusable(isFocusable: boolean, callback: AsyncCallback<void>): void

设置点击时是否支持切换焦点窗口,使用callback异步回调。

说明

从 API version 7开始支持,从API version 9开始废弃,推荐使用setWindowFocusable()

系统能力: SystemCapability.WindowManager.WindowManager.Core

参数:

参数名

类型

必填

说明

isFocusable

boolean

点击时是否支持切换焦点窗口。true表示支持;false表示不支持。

callback

AsyncCallback<void>

回调函数。

示例:

  1. let isFocusable= true;
  2. windowClass.setFocusable(isFocusable, (err) => {
  3. if (err.code) {
  4. console.error('Failed to set the window to be focusable. Cause:' + JSON.stringify(err));
  5. return;
  6. }
  7. console.info('Succeeded in setting the window to be focusable.');
  8. });

setFocusable(deprecated)

setFocusable(isFocusable: boolean): Promise<void>

设置点击时是否支持切换焦点窗口,使用Promise异步回调。

说明

从 API version 7开始支持,从API version 9开始废弃,推荐使用setWindowFocusable()

系统能力: SystemCapability.WindowManager.WindowManager.Core

参数:

参数名

类型

必填

说明

isFocusable

boolean

点击时是否支持切换焦点窗口。true表示支持;false表示不支持。

返回值:

类型

说明

Promise<void>

无返回结果的Promise对象。

示例:

  1. let isFocusable= true;
  2. let promise = windowClass.setFocusable(isFocusable);
  3. promise.then(()=> {
  4. console.info('Succeeded in setting the window to be focusable.');
  5. }).catch((err)=>{
  6. console.error('Failed to set the window to be focusable. Cause: ' + JSON.stringify(err));
  7. });

setKeepScreenOn(deprecated)

setKeepScreenOn(isKeepScreenOn: boolean, callback: AsyncCallback<void>): void

设置屏幕是否为常亮状态,使用callback异步回调。

说明

从 API version 6开始支持,从API version 9开始废弃,推荐使用setWindowKeepScreenOn()

系统能力: SystemCapability.WindowManager.WindowManager.Core

参数:

参数名

类型

必填

说明

isKeepScreenOn

boolean

设置屏幕是否为常亮状态。true表示常亮;false表示不常亮。

callback

AsyncCallback<void>

回调函数。

示例:

  1. let isKeepScreenOn = true;
  2. windowClass.setKeepScreenOn(isKeepScreenOn, (err) => {
  3. if (err.code) {
  4. console.error('Failed to set the screen to be always on. Cause: ' + JSON.stringify(err));
  5. return;
  6. }
  7. console.info('Succeeded in setting the screen to be always on.');
  8. });

setKeepScreenOn(deprecated)

setKeepScreenOn(isKeepScreenOn: boolean): Promise<void>

设置屏幕是否为常亮状态,使用Promise异步回调。

说明

从 API version 6开始支持,从API version 9开始废弃,推荐使用setWindowKeepScreenOn()

系统能力: SystemCapability.WindowManager.WindowManager.Core

参数:

参数名

类型

必填

说明

isKeepScreenOn

boolean

设置屏幕是否为常亮状态。true表示常亮;false表示不常亮。

返回值:

类型

说明

Promise<void>

无返回结果的Promise对象。

示例:

  1. let isKeepScreenOn = true;
  2. let promise = windowClass.setKeepScreenOn(isKeepScreenOn);
  3. promise.then(() => {
  4. console.info('Succeeded in setting the screen to be always on.');
  5. }).catch((err)=>{
  6. console.info('Failed to set the screen to be always on. Cause: ' + JSON.stringify(err));
  7. });

setOutsideTouchable(deprecated)

setOutsideTouchable(touchable: boolean, callback: AsyncCallback<void>): void

设置是否允许可点击子窗口之外的区域,使用callback异步回调。

说明

从 API version 7开始支持,从API version 9开始废弃。

从 API version 9开始,系统默认允许点击子窗口之外的区域,此接口不再支持使用,也不再提供替代接口。

系统能力: SystemCapability.WindowManager.WindowManager.Core

参数:

参数名

类型

必填

说明

touchable

boolean

设置是否可点击。true表示可点击;false表示不可点击。

callback

AsyncCallback<void>

回调函数。

示例:

  1. windowClass.setOutsideTouchable(true, (err) => {
  2. if (err.code) {
  3. console.error('Failed to set the area to be touchable. Cause: ' + JSON.stringify(err));
  4. return;
  5. }
  6. console.info('Succeeded in setting the area to be touchable.');
  7. });

setOutsideTouchable(deprecated)

setOutsideTouchable(touchable: boolean): Promise<void>

设置是否允许可点击子窗口之外的区域,使用Promise异步回调。

说明

从 API version 7开始支持,从API version 9开始废弃。

从 API version 9开始,系统默认允许点击子窗口之外的区域,此接口不再支持使用,也不再提供替代接口。

系统能力: SystemCapability.WindowManager.WindowManager.Core

参数:

参数名

类型

必填

说明

touchable

boolean

设置是否可点击。true表示可点击;false表示不可点击。

返回值:

类型

说明

Promise<void>

无返回结果的Promise对象。

示例:

  1. let promise = windowClass.setOutsideTouchable(true);
  2. promise.then(()=> {
  3. console.info('Succeeded in setting the area to be touchable.');
  4. }).catch((err)=>{
  5. console.error('Failed to set the area to be touchable. Cause: ' + JSON.stringify(err));
  6. });

setPrivacyMode(deprecated)

setPrivacyMode(isPrivacyMode: boolean, callback: AsyncCallback<void>): void

设置窗口是否为隐私模式,使用callback异步回调。设置为隐私模式的窗口,窗口内容将无法被截屏或录屏。此接口可用于禁止截屏/录屏的场景。

说明

从 API version 7开始支持,从API version 9开始废弃,推荐使用setWindowPrivacyMode()

系统能力: SystemCapability.WindowManager.WindowManager.Core

参数:

参数名

类型

必填

说明

isPrivacyMode

boolean

窗口是否为隐私模式。true表示模式开启;false表示模式关闭。

callback

AsyncCallback<void>

回调函数。

示例:

  1. let isPrivacyMode = true;
  2. windowClass.setPrivacyMode(isPrivacyMode, (err) => {
  3. if (err.code) {
  4. console.error('Failed to set the window to privacy mode. Cause:' + JSON.stringify(err));
  5. return;
  6. }
  7. console.info('Succeeded in setting the window to privacy mode.');
  8. });

setPrivacyMode(deprecated)

setPrivacyMode(isPrivacyMode: boolean): Promise<void>

设置窗口是否为隐私模式,使用Promise异步回调。设置为隐私模式的窗口,窗口内容将无法被截屏或录屏。此接口可用于禁止截屏/录屏的场景。

说明

从 API version 7开始支持,从API version 9开始废弃,推荐使用setWindowPrivacyMode()

系统能力: SystemCapability.WindowManager.WindowManager.Core

参数:

参数名

类型

必填

说明

isPrivacyMode

boolean

窗口是否为隐私模式。true表示模式开启;false表示模式关闭。

返回值:

类型

说明

Promise<void>

无返回结果的Promise对象。

示例:

  1. let isPrivacyMode = true;
  2. let promise = windowClass.setPrivacyMode(isPrivacyMode);
  3. promise.then(()=> {
  4. console.info('Succeeded in setting the window to privacy mode.');
  5. }).catch((err)=>{
  6. console.error('Failed to set the window to privacy mode. Cause: ' + JSON.stringify(err));
  7. });

setTouchable(deprecated)

setTouchable(isTouchable: boolean, callback: AsyncCallback<void>): void

设置窗口是否为可触状态,使用callback异步回调。

说明

从 API version 7开始支持,从API version 9开始废弃,推荐使用setWindowTouchable()

系统能力: SystemCapability.WindowManager.WindowManager.Core

参数:

参数名

类型

必填

说明

isTouchable

boolean

窗口是否为可触状态。true表示可触;false表示不可触。

callback

AsyncCallback<void>

回调函数。

示例:

  1. let isTouchable = true;
  2. windowClass.setTouchable(isTouchable, (err) => {
  3. if (err.code) {
  4. console.error('Failed to set the window to be touchable. Cause:' + JSON.stringify(err));
  5. return;
  6. }
  7. console.info('Succeeded in setting the window to be touchable.');
  8. });

setTouchable(deprecated)

setTouchable(isTouchable: boolean): Promise<void>

设置窗口是否为可触状态,使用Promise异步回调。

说明

从 API version 7开始支持,从API version 9开始废弃,推荐使用setWindowTouchable()

系统能力: SystemCapability.WindowManager.WindowManager.Core

参数:

参数名

类型

必填

说明

isTouchable

boolean

窗口是否为可触状态。true表示可触;false表示不可触。

返回值:

类型

说明

Promise<void>

无返回结果的Promise对象。

示例:

  1. let isTouchable = true;
  2. let promise = windowClass.setTouchable(isTouchable);
  3. promise.then(()=> {
  4. console.info('Succeeded in setting the window to be touchable.');
  5. }).catch((err)=>{
  6. console.error('Failed to set the window to be touchable. Cause: ' + JSON.stringify(err));
  7. });

WindowStageEventType9+

WindowStage生命周期。

模型约束: 此接口仅可在Stage模型下使用。

系统能力: SystemCapability.WindowManager.WindowManager.Core

名称

说明

SHOWN

1

切到前台。

ACTIVE

2

获焦状态。

INACTIVE

3

失焦状态。

HIDDEN

4

切到后台。

WindowStage9+

窗口管理器。管理各个基本窗口单元,即Window实例。

下列API示例中都需在onWindowStageCreate()函数中使用WindowStage的实例调用对应方法。

getMainWindow9+

getMainWindow(callback: AsyncCallback<Window>): void

获取该WindowStage实例下的主窗口,使用callback异步回调。

模型约束: 此接口仅可在Stage模型下使用。

系统能力: SystemCapability.WindowManager.WindowManager.Core

参数:

参数名

类型

必填

说明

callback

AsyncCallback<Window>

回调函数。返回当前WindowStage下的主窗口对象。

错误码:

以下错误码的详细介绍请参见窗口错误码

错误码ID

错误信息

1300002

This window state is abnormal.

1300005

This window stage is abnormal.

示例:

  1. import UIAbility from '@ohos.app.ability.UIAbility';
  2. class myAbility extends UIAbility {
  3. onWindowStageCreate(windowStage) {
  4. console.log('onWindowStageCreate');
  5. let windowClass = null;
  6. windowStage.getMainWindow((err, data) => {
  7. if (err.code) {
  8. console.error('Failed to obtain the main window. Cause: ' + JSON.stringify(err));
  9. return;
  10. }
  11. windowClass = data;
  12. console.info('Succeeded in obtaining the main window. Data: ' + JSON.stringify(data));
  13. });
  14. }
  15. };

getMainWindow9+

getMainWindow(): Promise<Window>

获取该WindowStage实例下的主窗口,使用Promise异步回调。

模型约束: 此接口仅可在Stage模型下使用。

系统能力: SystemCapability.WindowManager.WindowManager.Core

返回值:

类型

说明

Promise<Window>

Promise对象。返回当前WindowStage下的主窗口对象。

错误码:

以下错误码的详细介绍请参见窗口错误码

错误码ID

错误信息

1300002

This window state is abnormal.

1300005

This window stage is abnormal.

示例:

  1. import UIAbility from '@ohos.app.ability.UIAbility';
  2. class myAbility extends UIAbility {
  3. onWindowStageCreate(windowStage) {
  4. console.log('onWindowStageCreate');
  5. let windowClass = null;
  6. let promise = windowStage.getMainWindow();
  7. promise.then((data) => {
  8. windowClass = data;
  9. console.info('Succeeded in obtaining the main window. Data: ' + JSON.stringify(data));
  10. }).catch((err) => {
  11. console.error('Failed to obtain the main window. Cause: ' + JSON.stringify(err));
  12. });
  13. }
  14. };

getMainWindowSync9+

getMainWindowSync(): Window

获取该WindowStage实例下的主窗口。

模型约束: 此接口仅可在Stage模型下使用。

系统能力: SystemCapability.WindowManager.WindowManager.Core

返回值:

类型

说明

Window

返回当前WindowStage下的主窗口对象。

错误码:

以下错误码的详细介绍请参见窗口错误码

错误码ID

错误信息

1300002

This window state is abnormal.

1300005

This window stage is abnormal.

示例:

  1. import UIAbility from '@ohos.app.ability.UIAbility';
  2. class myAbility extends UIAbility {
  3. onWindowStageCreate(windowStage) {
  4. console.log('onWindowStageCreate');
  5. try {
  6. let windowClass = windowStage.getMainWindowSync();
  7. } catch (exception) {
  8. console.error('Failed to obtain the main window. Cause: ' + JSON.stringify(exception));
  9. };
  10. }
  11. };

createSubWindow9+

createSubWindow(name: string, callback: AsyncCallback<Window>): void

创建该WindowStage实例下的子窗口,使用callback异步回调。

模型约束: 此接口仅可在Stage模型下使用。

系统能力: SystemCapability.WindowManager.WindowManager.Core

参数:

参数名

类型

必填

说明

name

string

子窗口的名字。

callback

AsyncCallback<Window>

回调函数。返回当前WindowStage下的子窗口对象。

错误码:

以下错误码的详细介绍请参见窗口错误码

错误码ID

错误信息

1300002

This window state is abnormal.

1300005

This window stage is abnormal.

示例:

  1. import UIAbility from '@ohos.app.ability.UIAbility';
  2. class myAbility extends UIAbility {
  3. onWindowStageCreate(windowStage) {
  4. console.log('onWindowStageCreate');
  5. let windowClass = null;
  6. try {
  7. windowStage.createSubWindow('mySubWindow', (err, data) => {
  8. if (err.code) {
  9. console.error('Failed to create the subwindow. Cause: ' + JSON.stringify(err));
  10. return;
  11. }
  12. windowClass = data;
  13. console.info('Succeeded in creating the subwindow. Data: ' + JSON.stringify(data));
  14. windowClass.resize(500, 1000);
  15. });
  16. } catch (exception) {
  17. console.error('Failed to create the subwindow. Cause: ' + JSON.stringify(exception));
  18. };
  19. }
  20. };

createSubWindow9+

createSubWindow(name: string): Promise<Window>

创建该WindowStage实例下的子窗口,使用Promise异步回调。

模型约束: 此接口仅可在Stage模型下使用。

系统能力: SystemCapability.WindowManager.WindowManager.Core

参数:

参数名

类型

必填

说明

name

string

子窗口的名字。

返回值:

类型

说明

Promise<Window>

Promise对象。返回当前WindowStage下的子窗口对象。

错误码:

以下错误码的详细介绍请参见窗口错误码

错误码ID

错误信息

1300002

This window state is abnormal.

1300005

This window stage is abnormal.

示例:

  1. import UIAbility from '@ohos.app.ability.UIAbility';
  2. class myAbility extends UIAbility {
  3. onWindowStageCreate(windowStage) {
  4. console.log('onWindowStageCreate');
  5. let windowClass = null;
  6. try {
  7. let promise = windowStage.createSubWindow('mySubWindow');
  8. promise.then((data) => {
  9. windowClass = data;
  10. console.info('Succeeded in creating the subwindow. Data: ' + JSON.stringify(data));
  11. }).catch((err) => {
  12. console.error('Failed to create the subwindow. Cause: ' + JSON.stringify(err));
  13. });
  14. } catch (exception) {
  15. console.error('Failed to create the subwindow. Cause: ' + JSON.stringify(exception));
  16. };
  17. }
  18. };

getSubWindow9+

getSubWindow(callback: AsyncCallback<Array<Window>>): void

获取该WindowStage实例下的所有子窗口,使用callback异步回调。

模型约束: 此接口仅可在Stage模型下使用。

系统能力: SystemCapability.WindowManager.WindowManager.Core

参数:

参数名

类型

必填

说明

callback

AsyncCallback<Array<Window>>

回调函数。返回当前WindowStage下的所有子窗口对象。

错误码:

以下错误码的详细介绍请参见窗口错误码

错误码ID

错误信息

1300005

This window stage is abnormal.

示例:

  1. import UIAbility from '@ohos.app.ability.UIAbility';
  2. class myAbility extends UIAbility {
  3. onWindowStageCreate(windowStage) {
  4. console.log('onWindowStageCreate');
  5. let windowClass = null;
  6. windowStage.getSubWindow((err, data) => {
  7. if (err.code) {
  8. console.error('Failed to obtain the subwindow. Cause: ' + JSON.stringify(err));
  9. return;
  10. }
  11. windowClass = data;
  12. console.info('Succeeded in obtaining the subwindow. Data: ' + JSON.stringify(data));
  13. });
  14. }
  15. };

getSubWindow9+

getSubWindow(): Promise<Array<Window>>

获取该WindowStage实例下的所有子窗口,使用Promise异步回调。

模型约束: 此接口仅可在Stage模型下使用。

系统能力: SystemCapability.WindowManager.WindowManager.Core

返回值:

类型

说明

Promise<Array<Window>>

Promise对象。返回当前WindowStage下的所有子窗口对象。

错误码:

以下错误码的详细介绍请参见窗口错误码

错误码ID

错误信息

1300005

This window stage is abnormal.

示例:

  1. import UIAbility from '@ohos.app.ability.UIAbility';
  2. class myAbility extends UIAbility {
  3. onWindowStageCreate(windowStage) {
  4. console.log('onWindowStageCreate');
  5. let windowClass = null;
  6. let promise = windowStage.getSubWindow();
  7. promise.then((data) => {
  8. windowClass = data;
  9. console.info('Succeeded in obtaining the subwindow. Data: ' + JSON.stringify(data));
  10. }).catch((err) => {
  11. console.error('Failed to obtain the subwindow. Cause: ' + JSON.stringify(err));
  12. })
  13. }
  14. };

loadContent9+

loadContent(path: string, storage: LocalStorage, callback: AsyncCallback<void>): void

为当前WindowStage的主窗口加载与LocalStorage相关联的具体页面内容,使用callback异步回调。

模型约束: 此接口仅可在Stage模型下使用。

系统能力: SystemCapability.WindowManager.WindowManager.Core

参数:

参数名

类型

必填

说明

path

string

要加载到窗口中的页面内容的路径,该路径需添加到工程的main_pages.json文件中。

storage

LocalStorage

存储单元,为应用程序范围内的可变状态属性和非可变状态属性提供存储。

callback

AsyncCallback<void>

回调函数。

错误码:

以下错误码的详细介绍请参见窗口错误码

错误码ID

错误信息

1300002

This window state is abnormal.

1300005

This window stage is abnormal.

示例:

  1. import UIAbility from '@ohos.app.ability.UIAbility';
  2. class myAbility extends UIAbility {
  3. storage : LocalStorage
  4. onWindowStageCreate(windowStage) {
  5. this.storage = new LocalStorage();
  6. this.storage.setOrCreate('storageSimpleProp',121);
  7. console.log('onWindowStageCreate');
  8. try {
  9. windowStage.loadContent('pages/page2',this.storage,(err) => {
  10. if (err.code) {
  11. console.error('Failed to load the content. Cause:' + JSON.stringify(err));
  12. return;
  13. }
  14. console.info('Succeeded in loading the content.');
  15. });
  16. } catch (exception) {
  17. console.error('Failed to load the content. Cause:' + JSON.stringify(exception));
  18. };
  19. }
  20. };

loadContent9+

loadContent(path: string, storage?: LocalStorage): Promise<void>

为当前WindowStage的主窗口加载与LocalStorage相关联的具体页面内容,使用Promise异步回调。

模型约束: 此接口仅可在Stage模型下使用。

系统能力: SystemCapability.WindowManager.WindowManager.Core

参数:

参数名

类型

必填

说明

path

string

要加载到窗口中的页面内容的路径,该路径需添加到工程的main_pages.json文件中。

storage

LocalStorage

存储单元,为应用程序范围内的可变状态属性和非可变状态属性提供存储。

返回值:

类型

说明

Promise<void>

无返回结果的Promise对象。

错误码:

以下错误码的详细介绍请参见窗口错误码

错误码ID

错误信息

1300002

This window state is abnormal.

1300005

This window stage is abnormal.

示例:

  1. import UIAbility from '@ohos.app.ability.UIAbility';
  2. class myAbility extends UIAbility {
  3. storage : LocalStorage
  4. onWindowStageCreate(windowStage) {
  5. this.storage = new LocalStorage();
  6. this.storage.setOrCreate('storageSimpleProp',121);
  7. console.log('onWindowStageCreate');
  8. try {
  9. let promise = windowStage.loadContent('pages/page2',this.storage);
  10. promise.then(() => {
  11. console.info('Succeeded in loading the content.');
  12. }).catch((err) => {
  13. console.error('Failed to load the content. Cause:' + JSON.stringify(err));
  14. });
  15. } catch (exception) {
  16. console.error('Failed to load the content. Cause:' + JSON.stringify(exception));
  17. };
  18. }
  19. };

loadContent9+

loadContent(path: string, callback: AsyncCallback<void>): void

为当前WindowStage的主窗口加载具体页面内容,使用callback异步回调。

模型约束: 此接口仅可在Stage模型下使用。

系统能力: SystemCapability.WindowManager.WindowManager.Core

参数:

参数名

类型

必填

说明

path

string

要加载到窗口中的页面内容的路径,该路径需添加到工程的main_pages.json文件中。

callback

AsyncCallback<void>

回调函数。

错误码:

以下错误码的详细介绍请参见窗口错误码

错误码ID

错误信息

1300002

This window state is abnormal.

1300005

This window stage is abnormal.

示例:

  1. import UIAbility from '@ohos.app.ability.UIAbility';
  2. class myAbility extends UIAbility {
  3. onWindowStageCreate(windowStage) {
  4. console.log('onWindowStageCreate');
  5. try {
  6. windowStage.loadContent('pages/page2', (err) => {
  7. if (err.code) {
  8. console.error('Failed to load the content. Cause:' + JSON.stringify(err));
  9. return;
  10. }
  11. console.info('Succeeded in loading the content.');
  12. });
  13. } catch (exception) {
  14. console.error('Failed to load the content. Cause:' + JSON.stringify(exception));
  15. };
  16. }
  17. };

on('windowStageEvent')9+

on(eventType: 'windowStageEvent', callback: Callback<WindowStageEventType>): void

开启WindowStage生命周期变化的监听。

模型约束: 此接口仅可在Stage模型下使用。

系统能力: SystemCapability.WindowManager.WindowManager.Core

参数:

参数名

类型

必填

说明

type

string

监听事件,固定为'windowStageEvent',即WindowStage生命周期变化事件。

callback

Callback<WindowStageEventType>

回调函数。返回当前的WindowStage生命周期状态。

错误码:

以下错误码的详细介绍请参见窗口错误码

错误码ID

错误信息

1300002

This window state is abnormal.

1300005

This window stage is abnormal.

示例:

  1. import UIAbility from '@ohos.app.ability.UIAbility';
  2. class myAbility extends UIAbility {
  3. onWindowStageCreate(windowStage) {
  4. console.log('onWindowStageCreate');
  5. try {
  6. windowStage.on('windowStageEvent', (data) => {
  7. console.info('Succeeded in enabling the listener for window stage event changes. Data: ' +
  8. JSON.stringify(data));
  9. });
  10. } catch (exception) {
  11. console.error('Failed to enable the listener for window stage event changes. Cause:' +
  12. JSON.stringify(exception));
  13. };
  14. }
  15. };

off('windowStageEvent')9+

off(eventType: 'windowStageEvent', callback?: Callback<WindowStageEventType>): void

关闭WindowStage生命周期变化的监听。

模型约束: 此接口仅可在Stage模型下使用。

系统能力: SystemCapability.WindowManager.WindowManager.Core

参数:

参数名

类型

必填

说明

type

string

监听事件,固定为'windowStageEvent',即WindowStage生命周期变化事件。

callback

Callback<WindowStageEventType>

回调函数。返回当前的WindowStage生命周期状态。

错误码:

以下错误码的详细介绍请参见窗口错误码

错误码ID

错误信息

1300002

This window state is abnormal.

1300005

This window stage is abnormal.

示例:

  1. import UIAbility from '@ohos.app.ability.UIAbility';
  2. class myAbility extends UIAbility {
  3. onWindowStageCreate(windowStage) {
  4. console.log('onWindowStageCreate');
  5. try {
  6. windowStage.off('windowStageEvent');
  7. } catch (exception) {
  8. console.error('Failed to disable the listener for window stage event changes. Cause:' +
  9. JSON.stringify(exception));
  10. };
  11. }
以上内容是否对您有帮助:
在线笔记
App下载
App下载

扫描二维码

下载编程狮App

公众号
微信公众号

编程狮公众号