js-apis-window.md 144.3 KB
Newer Older
Z
zengyawen 已提交
1 2
# 窗口

G
ge-yafang 已提交
3 4 5 6 7 8
窗口提供管理窗口的一些基础能力,包括对当前窗口的创建、销毁、各属性设置,以及对各窗口间的管理调度。

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

- [Window](#window):当前窗口实例,窗口管理器管理的基本单元。
- [WindowStage](#windowstage9):窗口管理器。管理各个基本窗口单元。
G
ge-yafang 已提交
9

G
ge-yafang 已提交
10
> **说明:**
G
ge-yafang 已提交
11
>
12
> 本模块首批接口从API version 6开始支持。后续版本的新增接口,采用上角标单独标记接口的起始版本。
Z
zengyawen 已提交
13 14 15

## 导入模块

G
ge-yafang 已提交
16
```js
Z
zengyawen 已提交
17 18 19
import window from '@ohos.window';
```

G
ge-yafang 已提交
20
## WindowType<sup>7+</sup>
C
chyyy0213 已提交
21

G
ge-yafang 已提交
22
窗口类型枚举。
C
chyyy0213 已提交
23

G
ge-yafang 已提交
24
**系统能力:** SystemCapability.WindowManager.WindowManager.Core
C
chyyy0213 已提交
25

G
ge-yafang 已提交
26
| 名称              | 值 | 说明               |
C
chyyy0213 已提交
27
| ----------------- | ------ | ------------------ |
28
| TYPE_APP          | 0      | 表示应用子窗口。<br>**模型约束:** 此接口仅可在FA模型下使用。 |
Z
zhirong 已提交
29
| TYPE_SYSTEM_ALERT | 1      | 表示系统告警窗口。 |
30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45
| TYPE_INPUT_METHOD<sup>9+</sup> | 2      | 表示输入法窗口。<br>**模型约束:** 此接口仅可在Stage模型下使用。<br>**系统接口:** 此接口为系统接口。 |
| TYPE_STATUS_BAR<sup>9+</sup>   | 3      | 表示状态栏窗口。<br>**模型约束:** 此接口仅可在Stage模型下使用。<br>**系统接口:** 此接口为系统接口。 |
| TYPE_PANEL<sup>9+</sup>        | 4      | 表示通知栏。<br>**模型约束:** 此接口仅可在Stage模型下使用。<br>**系统接口:** 此接口为系统接口。 |
| TYPE_KEYGUARD<sup>9+</sup>     | 5      | 表示锁屏。<br>**模型约束:** 此接口仅可在Stage模型下使用。<br>**系统接口:** 此接口为系统接口。 |
| TYPE_VOLUME_OVERLAY<sup>9+</sup> | 6      | 表示音量条。<br>**模型约束:** 此接口仅可在Stage模型下使用。<br>**系统接口:** 此接口为系统接口。 |
| TYPE_NAVIGATION_BAR<sup>9+</sup> | 7      | 表示导航栏窗口。<br>**模型约束:** 此接口仅可在Stage模型下使用。<br>**系统接口:** 此接口为系统接口。 |
| TYPE_FLOAT<sup>9+</sup> | 8      | 表示悬浮窗。<br>**模型约束:** 此接口仅可在Stage模型下使用。<br>**需要权限:** ohos.permission.SYSTEM_FLOAT_WINDOW |
| TYPE_WALLPAPER<sup>9+</sup> | 9      | 表示壁纸。<br>**模型约束:** 此接口仅可在Stage模型下使用。<br>**系统接口:** 此接口为系统接口。 |
| TYPE_DESKTOP<sup>9+</sup> | 10      | 表示桌面。<br>**模型约束:** 此接口仅可在Stage模型下使用。<br>**系统接口:** 此接口为系统接口。 |
| TYPE_LAUNCHER_RECENT<sup>9+</sup> | 11      | 表示多任务中心。<br>**模型约束:** 此接口仅可在Stage模型下使用。<br>**系统接口:** 此接口为系统接口。 |
| TYPE_LAUNCHER_DOCK<sup>9+</sup> | 12      | 表示桌面Dock栏。<br>**模型约束:** 此接口仅可在Stage模型下使用。<br>**系统接口:** 此接口为系统接口。 |
| TYPE_VOICE_INTERACTION<sup>9+</sup> | 13      | 表示智慧语音。<br>**模型约束:** 此接口仅可在Stage模型下使用。<br>**系统接口:** 此接口为系统接口。 |
| TYPE_POINTER<sup>9+</sup> | 14      | 表示鼠标。<br>**模型约束:** 此接口仅可在Stage模型下使用。<br>**系统接口:** 此接口为系统接口。 |
| TYPE_FLOAT_CAMERA<sup>9+</sup> | 15      | 表示相机类型悬浮窗。<br>**模型约束:** 此接口仅可在Stage模型下使用。<br>**需要权限:** ohos.permission.SYSTEM_FLOAT_WINDOW |
| TYPE_DIALOG<sup>9+</sup>  | 16      | 表示模态窗口。<br>**模型约束:** 此接口仅可在Stage模型下使用。<br>**系统接口:** 此接口为系统接口。 |
| TYPE_SCREENSHOT<sup>9+</sup>  | 17      | 表示截屏窗口。<br>**模型约束:** 此接口仅可在Stage模型下使用。<br>**系统接口:** 此接口为系统接口。 |
Z
zengyawen 已提交
46

G
ge-yafang 已提交
47
## AvoidAreaType<sup>7+</sup>
陈海莹 已提交
48

G
ge-yafang 已提交
49
窗口内容需要规避区域的类型枚举。
陈海莹 已提交
50

G
ge-yafang 已提交
51
**系统能力:** SystemCapability.WindowManager.WindowManager.Core
C
chyyy0213 已提交
52

53 54 55 56 57 58
| 名称                               | 值  | 说明              |
|----------------------------------|-----| ----------------- |
| TYPE_SYSTEM                      | 0   | 表示系统默认区域。|
| TYPE_CUTOUT                      | 1   | 表示刘海屏区域。  |
| TYPE_SYSTEM_GESTURE<sup>9+</sup> | 2   | 表示手势区域。    |
| TYPE_KEYBOARD<sup>9+</sup>       | 3   | 表示软键盘区域。  |
陈海莹 已提交
59

G
ge-yafang 已提交
60
## WindowMode<sup>7+</sup>
Z
zengyawen 已提交
61

G
ge-yafang 已提交
62
窗口模式枚举。
Z
zengyawen 已提交
63

64
**系统接口:** 此接口为系统接口。
C
chyyy0213 已提交
65

G
ge-yafang 已提交
66
**系统能力:** SystemCapability.WindowManager.WindowManager.Core
C
chyyy0213 已提交
67

G
ge-yafang 已提交
68 69 70 71 72 73 74
| 名称       | 值   | 说明                          |
| ---------- | ---- | ----------------------------- |
| UNDEFINED  | 1    | 表示APP未定义窗口模式。       |
| FULLSCREEN | 2    | 表示APP全屏模式。             |
| PRIMARY    | 3    | 表示APP分屏多窗口主要模式。   |
| SECONDARY  | 4    | 表示APP分屏多窗口次要模式。   |
| FLOATING   | 5    | 表示APP自由悬浮形式窗口模式。 |
Z
zengyawen 已提交
75

L
leafly2021 已提交
76 77 78 79
## WindowLayoutMode<sup>9+</sup>

窗口布局模式枚举。

80
**系统接口:** 此接口为系统接口。
L
leafly2021 已提交
81 82 83 84 85 86 87 88

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

| 名称       | 值   | 说明                          |
| ---------- | ---- | ----------------------------- |
| WINDOW_LAYOUT_MODE_CASCADE  | 0    | 表示使用层叠布局模式。       |
| WINDOW_LAYOUT_MODE_TILE | 1    | 表示使用平铺布局模式。             |

G
ge-yafang 已提交
89
## SystemBarProperties
Z
zengyawen 已提交
90

G
ge-yafang 已提交
91
状态栏、导航栏的属性。
Z
zengyawen 已提交
92

G
ge-yafang 已提交
93
**系统能力:** SystemCapability.WindowManager.WindowManager.Core
C
chyyy0213 已提交
94

C
chyyy0213 已提交
95 96
| 名称                                   | 参数类型 | 可读 | 可写 | 说明                                                         |
| -------------------------------------- | -------- | ---- | ---- | ------------------------------------------------------------ |
97
| statusBarColor                         | string   | 否   | 是   | 状态栏背景颜色,为十六进制RGB或ARGB颜色,不区分大小写,例如`#00FF00``#FF00FF00`。 |
C
chyyy0213 已提交
98 99
| isStatusBarLightIcon<sup>7+</sup>      | boolean  | 否   | 是   | 状态栏图标是否为高亮状态。                                   |
| statusBarContentColor<sup>8+</sup>     | string   | 否   | 是   | 状态栏文字颜色。                                             |
100 101
| navigationBarColor                     | string   | 否   | 是   | 导航栏背景颜色,为十六进制RGB或ARGB颜色,不区分大小写,例如`#00FF00``#FF00FF00`。 |
| isNavigationBarLightIcon<sup>7+</sup>  | boolean  | 否   | 是   | 导航栏图标是否为高亮状态。                                   |
C
chyyy0213 已提交
102
| navigationBarContentColor<sup>8+</sup> | string   | 否   | 是   | 导航栏文字颜色。                                             |
C
chyyy0213 已提交
103

X
xpeng 已提交
104
## Orientation<sup>9+</sup>
X
xpeng 已提交
105

X
xpeng 已提交
106
窗口显示方向类型枚举。
X
xpeng 已提交
107 108 109 110 111 112 113 114

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

| 名称                                  | 值   | 说明                          |
| ------------------------------------- | ---- | ----------------------------- |
| UNSPECIFIED                           | 0    | 表示未定义方向模式,由系统判定。 |
| PORTRAIT                              | 1    | 表示竖屏显示模式。             |
| LANDSCAPE                             | 2    | 表示横屏显示模式。   |
X
xpeng 已提交
115
| PORTRAIT_INVERTED                     | 3    | 表示反向竖屏显示模式。   |
X
xpeng 已提交
116 117
| LANDSCAPE_INVERTED                    | 4    | 表示反向横屏显示模式。 |
| AUTO_ROTATION                         | 5    | 表示传感器自动旋转模式。 |
X
xpeng 已提交
118 119
| AUTO_ROTATION_PORTRAIT                | 6    | 表示传感器自动竖向旋转模式。 |
| AUTO_ROTATION_LANDSCAPE               | 7    | 表示传感器自动横向旋转模式。 |
X
xpeng 已提交
120
| AUTO_ROTATION_RESTRICTED              | 8    | 表示受开关控制的自动旋转模式。 |
X
xpeng 已提交
121 122
| AUTO_ROTATION_PORTRAIT_RESTRICTED     | 9    | 表示受开关控制的自动竖向旋转模式。 |
| AUTO_ROTATION_LANDSCAPE_RESTRICTED    | 10   | 表述受开关控制的自动横向旋转模式。 |
X
xpeng 已提交
123 124
| LOCKED                                | 11   | 表示锁定模式。 |

Q
qianlf 已提交
125 126 127 128
## BlurStyle<sup>9+</sup>

窗口模糊类型枚举。

129
**系统接口:** 此接口为系统接口。
Q
qianlf 已提交
130 131 132 133 134 135 136 137 138 139

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

| 名称    | 值   | 说明                 |
| ------- | ---- | -------------------- |
| OFF     | 0    | 表示关闭模糊。       |
| THIN    | 1    | 表示较薄的模糊类型。 |
| REGULAR | 2    | 表示适中的模糊类型。 |
| THICK   | 3    | 表示较厚的模糊类型。 |

G
ge-yafang 已提交
140
## SystemBarRegionTint<sup>8+</sup>
C
chyyy0213 已提交
141 142 143

单个导航栏或状态栏回调信息。

144
**系统接口:** 此接口为系统接口。
C
chyyy0213 已提交
145

G
ge-yafang 已提交
146
**系统能力:** SystemCapability.WindowManager.WindowManager.Core
C
chyyy0213 已提交
147

C
chyyy0213 已提交
148 149
| 名称            | 参数类型                  | 可读 | 可写 | 说明                                                         |
| --------------- | ------------------------- | ---- | ---- | ------------------------------------------------------------ |
150 151 152 153 154
| type            | [WindowType](#windowtype) | 是   | 否   | 当前属性改变的系统栏类型,仅支持类型为导航栏、状态栏的系统栏。 |
| isEnable        | boolean                   | 是   | 否   | 当前系统栏是否显示。                                         |
| region          | [Rect](#rect)             | 是   | 否   | 当前系统栏的位置及大小。                                     |
| backgroundColor | string                    | 是   | 否   | 系统栏背景颜色,为十六进制RGB或ARGB颜色,不区分大小写,例如`#00FF00``#FF00FF00`。 |
| contentColor    | string                    | 是   | 否   | 系统栏文字颜色。                                             |
Z
zengyawen 已提交
155

G
ge-yafang 已提交
156
## SystemBarTintState<sup>8+</sup>
C
chyyy0213 已提交
157 158 159

当前系统栏回调信息集合。

160
**系统接口:** 此接口为系统接口。
C
chyyy0213 已提交
161

G
ge-yafang 已提交
162
**系统能力:** SystemCapability.WindowManager.WindowManager.Core
C
chyyy0213 已提交
163

G
ge-yafang 已提交
164 165 166
| 名称       | 参数类型                                            | 可读 | 可写 | 说明                         |
| ---------- | --------------------------------------------------- | ---- | ---- | ---------------------------- |
| displayId  | number                                              | 是   | 否   | 当前物理屏幕id。             |
167
| regionTint | Array<[SystemBarRegionTint](#systembarregiontint8)> | 是   | 否   | 当前已改变的所有系统栏信息。 |
Z
zengyawen 已提交
168

G
ge-yafang 已提交
169
## Rect<sup>7+</sup>
Z
zengyawen 已提交
170

G
ge-yafang 已提交
171
窗口矩形区域。
Z
zengyawen 已提交
172

G
ge-yafang 已提交
173
**系统能力:** SystemCapability.WindowManager.WindowManager.Core
C
chyyy0213 已提交
174 175 176 177 178 179 180

| 名称   | 参数类型 | 可读 | 可写 | 说明               |
| ------ | -------- | ---- | ---- | ------------------ |
| left   | number   | 是   | 是   | 矩形区域的左边界。 |
| top    | number   | 是   | 是   | 矩形区域的上边界。 |
| width  | number   | 是   | 是   | 矩形区域的宽度。   |
| height | number   | 是   | 是   | 矩形区域的高度。   |
Z
zengyawen 已提交
181

G
ge-yafang 已提交
182
## AvoidArea<sup>7+</sup>
Z
zengyawen 已提交
183

G
ge-yafang 已提交
184
窗口内容规避区域。
Z
zengyawen 已提交
185

G
ge-yafang 已提交
186
**系统能力:** SystemCapability.WindowManager.WindowManager.Core
C
chyyy0213 已提交
187 188 189

| 名称       | 参数类型      | 可读 | 可写 | 说明               |
| ---------- | ------------- | ---- | ---- | ------------------ |
190
| visible<sup>9+</sup>    | boolean       | 是   | 是   | 规避区域是否可见。 |
C
chyyy0213 已提交
191 192 193 194
| leftRect   | [Rect](#rect) | 是   | 是   | 屏幕左侧的矩形区。 |
| topRect    | [Rect](#rect) | 是   | 是   | 屏幕顶部的矩形区。 |
| rightRect  | [Rect](#rect) | 是   | 是   | 屏幕右侧的矩形区。 |
| bottomRect | [Rect](#rect) | 是   | 是   | 屏幕底部的矩形区。 |
Z
zengyawen 已提交
195

G
ge-yafang 已提交
196
## Size<sup>7+</sup>
Z
zengyawen 已提交
197 198 199

窗口大小。

G
ge-yafang 已提交
200
**系统能力:** SystemCapability.WindowManager.WindowManager.Core
C
chyyy0213 已提交
201 202 203 204 205

| 名称   | 参数类型 | 可读 | 可写 | 说明       |
| ------ | -------- | ---- | ---- | ---------- |
| width  | number   | 是   | 是   | 窗口宽度。 |
| height | number   | 是   | 是   | 窗口高度。 |
Z
zengyawen 已提交
206

G
ge-yafang 已提交
207
## WindowProperties
Z
zengyawen 已提交
208 209 210

窗口属性。

G
ge-yafang 已提交
211
**系统能力:** SystemCapability.WindowManager.WindowManager.Core
C
chyyy0213 已提交
212

L
leafly2021 已提交
213 214 215 216 217 218 219 220 221 222 223 224 225 226
| 名称                                  | 参数类型                  | 可读 | 可写 | 说明                                                         |
| ------------------------------------- | ------------------------- | ---- | ---- | ------------------------------------------------------------ |
| windowRect<sup>7+</sup>               | [Rect](#rect)             | 是   | 是   | 窗口尺寸。                                                   |
| type<sup>7+</sup>                     | [WindowType](#windowtype) | 是   | 是   | 窗口类型。                                                   |
| isFullScreen                          | boolean                   | 是   | 是   | 是否全屏,默认为false。                                      |
| isLayoutFullScreen<sup>7+</sup>       | boolean                   | 是   | 是   | 窗口是否为沉浸式,默认为false。                              |
| focusable<sup>7+</sup>                | boolean                   | 是   | 否   | 窗口是否可聚焦,默认为true。                                 |
| touchable<sup>7+</sup>                | boolean                   | 是   | 否   | 窗口是否可触摸,默认为true。                                 |
| brightness                            | number                    | 是   | 是   | 屏幕亮度, 取值范围为0~1,1表示最大亮度值。                  |
| dimBehindValue<sup>(deprecated)</sup> | number                    | 是   | 是   | 靠后窗口的暗度值,取值范围为0~1,1表示最暗。<br>- **说明:** 从API version 9开始废弃。<br>- 从 API version 7开始支持 |
| isKeepScreenOn                        | boolean                   | 是   | 是   | 屏幕是否常亮,默认为false。                                  |
| isPrivacyMode<sup>7+</sup>            | boolean                   | 是   | 是   | 隐私模式,默认为false。                                      |
| isRoundCorner<sup>(deprecated)</sup>  | boolean                   | 是   | 是   | 窗口是否为圆角。默认为false。<br>- **说明:** 从API version 9开始废弃。<br/>- 从 API version 7开始支持 |
| isTransparent<sup>7+</sup>            | boolean                   | 是   | 是   | 窗口是否透明。默认为false。                                  |
M
mayunteng_1 已提交
227
| id<sup>9+</sup>                       | number                    | 是   | 否   | 窗口ID,默认值为0.0。                                                  |
Z
zengyawen 已提交
228

G
ge-yafang 已提交
229
## ColorSpace<sup>8+</sup>
Z
zengyawen 已提交
230

C
chyyy0213 已提交
231
色域模式。
Z
zengyawen 已提交
232

G
ge-yafang 已提交
233
**系统能力:** SystemCapability.WindowManager.WindowManager.Core
C
chyyy0213 已提交
234 235 236 237 238

| 名称       | 默认值 | 说明           |
| ---------- | ------ | -------------- |
| DEFAULT    | 0      | 默认色域模式。 |
| WIDE_GAMUT | 1      | 广色域模式。   |
Z
zengyawen 已提交
239

L
leafly2021 已提交
240 241 242 243
## ScaleOptions<sup>9+</sup>

缩放参数。

244
**系统接口:** 此接口为系统接口。
L
leafly2021 已提交
245 246 247 248 249 250 251 252 253 254 255 256 257 258

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

| 名称   | 参数类型 | 可读 | 可写 | 说明                                               |
| ------ | -------- | ---- | ---- | -------------------------------------------------- |
| x      | number   | 否   | 是   | X轴的缩放参数,默认值为1.0。                       |
| y      | number   | 否   | 是   | Y轴的缩放参数,默认值为1.0。                       |
| pivotX | number   | 否   | 是   | 缩放中心点X轴坐标,默认值为0.5, 取值范围0.0~1.0。 |
| pivotY | number   | 否   | 是   | 缩放中心点Y轴坐标,默认值为0.5, 取值范围0.0~1.0。 |

## RotateOptions<sup>9+</sup>

旋转参数。

259
**系统接口:** 此接口为系统接口。
L
leafly2021 已提交
260 261 262 263 264 265 266 267 268 269 270 271 272 273 274

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

| 名称   | 参数类型 | 可读 | 可写 | 说明                                               |
| ------ | -------- | ---- | ---- | -------------------------------------------------- |
| x      | number   | 否   | 是   | 绕X轴的旋转角度,默认值为0.0。                     |
| y      | number   | 否   | 是   | 绕Y轴的旋转角度,默认值为0.0。                     |
| z      | number   | 否   | 是   | 绕Z轴的旋转角度,默认值为0.0。                     |
| pivotX | number   | 否   | 是   | 旋转中心点X轴坐标,默认值为0.5, 取值范围0.0~1.0。 |
| pivotY | number   | 否   | 是   | 旋转中心点Y轴坐标,默认值为0.5, 取值范围0.0~1.0。 |

## TranslateOptions<sup>9+</sup>

平移参数。

275
**系统接口:** 此接口为系统接口。
L
leafly2021 已提交
276 277 278 279 280 281 282 283 284

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

| 名称 | 参数类型 | 可读 | 可写 | 说明                         |
| ---- | -------- | ---- | ---- | ---------------------------- |
| x    | number   | 否   | 是   | X轴的平移参数,默认值为0.0。 |
| y    | number   | 否   | 是   | Y轴的平移参数,默认值为0.0。 |
| z    | number   | 否   | 是   | Z轴的平移参数,默认值为0.0。 |

Z
zengyawen 已提交
285
## window.create<sup>7+</sup>
Z
zengyawen 已提交
286

C
chyyy0213 已提交
287
create(id: string, type: WindowType, callback: AsyncCallback&lt;Window&gt;): void
Z
zengyawen 已提交
288

G
ge-yafang 已提交
289
创建子窗口,使用callback异步回调。
Z
zengyawen 已提交
290

291
**模型约束:** 此接口仅可在FA模型下使用。
Z
zengyawen 已提交
292

G
ge-yafang 已提交
293
**系统能力:** SystemCapability.WindowManager.WindowManager.Core
Z
zengyawen 已提交
294

L
leafly2021 已提交
295
**参数:**
C
chyyy0213 已提交
296

G
ge-yafang 已提交
297 298 299 300 301
| 参数名   | 类型                                   | 必填 | 说明                                 |
| -------- | -------------------------------------- | ---- | ------------------------------------ |
| id       | string                                 | 是   | 窗口id。                             |
| type     | [WindowType](#windowtype)              | 是   | 窗口类型。                           |
| callback | AsyncCallback&lt;[Window](#window)&gt; | 是   | 回调函数。返回当前创建的子窗口对象。 |
Z
zengyawen 已提交
302

L
leafly2021 已提交
303
**示例:**
Z
zengyawen 已提交
304

G
ge-yafang 已提交
305 306
```js
var windowClass = null;
307 308 309 310 311 312 313 314
window.create("first", window.WindowType.TYPE_APP,(err,data) => {
    if(err.code){
        console.error('Failed to create the subWindow. Cause: ' + JSON.stringify(err));
        return;
    }
    windowClass = data;
    console.info('Succeeded in creating the subWindow. Data: ' + JSON.stringify(data));
});
G
ge-yafang 已提交
315
```
C
chyyy0213 已提交
316

Z
zengyawen 已提交
317
## window.create<sup>7+</sup>
C
chyyy0213 已提交
318 319 320

create(id: string, type: WindowType): Promise&lt;Window&gt;

G
ge-yafang 已提交
321
创建子窗口,使用Promise异步回调。
C
chyyy0213 已提交
322

323
**模型约束:** 此接口仅可在FA模型下使用。
Z
zengyawen 已提交
324

G
ge-yafang 已提交
325
**系统能力:** SystemCapability.WindowManager.WindowManager.Core
C
chyyy0213 已提交
326

L
leafly2021 已提交
327
**参数:**
C
chyyy0213 已提交
328

G
ge-yafang 已提交
329 330 331 332
| 参数名 | 类型                      | 必填 | 说明       |
| ------ | ------------------------- | ---- | ---------- |
| id     | string                    | 是   | 窗口id。   |
| type   | [WindowType](#windowtype) | 是   | 窗口类型。 |
C
chyyy0213 已提交
333

L
leafly2021 已提交
334
**返回值:**
C
chyyy0213 已提交
335

G
ge-yafang 已提交
336 337 338
| 类型                             | 说明                                    |
| -------------------------------- | --------------------------------------- |
| Promise&lt;[Window](#window)&gt; | Promise对象。返回当前创建的子窗口对象。 |
C
chyyy0213 已提交
339

L
leafly2021 已提交
340
**示例:**
C
chyyy0213 已提交
341

G
ge-yafang 已提交
342 343 344 345 346
```js
var windowClass = null;
let promise = window.create("first", window.WindowType.TYPE_APP);
promise.then((data)=> {
    windowClass = data;
347
    console.info('Succeeded in creating the subWindow. Data: ' + JSON.stringify(data));
G
ge-yafang 已提交
348 349 350 351
}).catch((err)=>{
    console.error('Failed to create the subWindow. Cause: ' + JSON.stringify(err));
});
```
C
chyyy0213 已提交
352

C
chyyy0213 已提交
353
## window.create<sup>8+</sup>
Z
zengyawen 已提交
354

C
chyyy0213 已提交
355
create(ctx: Context, id: string, type: WindowType, callback: AsyncCallback&lt;Window&gt;): void
Z
zengyawen 已提交
356

G
ge-yafang 已提交
357
创建子窗口,使用callback异步回调,其中Context详见[Context](js-apis-Context.md)
G
ge-yafang 已提交
358

G
ge-yafang 已提交
359
从API version 9开始,当Context为[ServiceExtensionContext](js-apis-service-extension-context.md)时,创建系统窗口,使用callback异步回调。
Z
zengyawen 已提交
360

G
ge-yafang 已提交
361
**系统能力:** SystemCapability.WindowManager.WindowManager.Core
Z
zengyawen 已提交
362

L
leafly2021 已提交
363
**参数:**
Z
zengyawen 已提交
364

G
ge-yafang 已提交
365 366 367 368 369
| 参数名   | 类型                                   | 必填 | 说明                                                         |
| -------- | -------------------------------------- | ---- | ------------------------------------------------------------ |
| ctx      | Context                                | 是   | 当前应用上下文信息。<br>API version 8的Context定义见[Context](js-apis-Context.md)<br>API version 9的Context定义见[Context](js-apis-service-extension-context.md)。 |
| id       | string                                 | 是   | 窗口id。                                                     |
| type     | [WindowType](#windowtype)              | 是   | 窗口类型。                                                   |
G
ge-yafang 已提交
370
| callback | AsyncCallback&lt;[Window](#window)&gt; | 是   | 回调函数。返回当前创建的子窗口对象。                         |
Z
zengyawen 已提交
371

L
leafly2021 已提交
372
**示例:**
Z
zengyawen 已提交
373

G
ge-yafang 已提交
374 375 376 377
```js
var windowClass = null;
 window.create(this.context, "alertWindow", window.WindowType.TYPE_SYSTEM_ALERT, (err, data) => {
    if (err.code) {
378
        console.error('Failed to create the window. Cause: ' + JSON.stringify(err));
G
ge-yafang 已提交
379 380 381
        return;
    }
    windowClass = data;
382
    console.info('Succeeded in creating the window. Data: ' + JSON.stringify(data));
G
ge-yafang 已提交
383 384 385
    windowClass.resetSize(500, 1000);
});
```
C
chyyy0213 已提交
386 387 388

## window.create<sup>8+</sup>

C
chyyy0213 已提交
389
create(ctx: Context, id: string, type: WindowType): Promise&lt;Window&gt;
C
chyyy0213 已提交
390

G
ge-yafang 已提交
391
创建子窗口,使用Promise异步回调,其中Context详见[Context](js-apis-Context.md)
G
ge-yafang 已提交
392

G
ge-yafang 已提交
393
从API version 9开始,当Context为[ServiceExtensionContext](js-apis-service-extension-context.md)时,创建系统窗口,使用Promise异步回调。
C
chyyy0213 已提交
394

G
ge-yafang 已提交
395
**系统能力:** SystemCapability.WindowManager.WindowManager.Core
C
chyyy0213 已提交
396

L
leafly2021 已提交
397
**参数:**
C
chyyy0213 已提交
398

G
ge-yafang 已提交
399 400 401 402 403
| 参数名 | 类型                      | 必填 | 说明                                                         |
| ------ | ------------------------- | ---- | ------------------------------------------------------------ |
| ctx    | Context                   | 是   | 当前应用上下文信息。<br/>API version 8的Context定义见[Context](js-apis-Context.md)<br/>API version 9的Context定义见[Context](js-apis-service-extension-context.md)。 |
| id     | string                    | 是   | 窗口id。                                                     |
| type   | [WindowType](#windowtype) | 是   | 窗口类型。                                                   |
C
chyyy0213 已提交
404

L
leafly2021 已提交
405
**返回值:**
C
chyyy0213 已提交
406

G
ge-yafang 已提交
407 408 409
| 类型                             | 说明                                    |
| -------------------------------- | --------------------------------------- |
| Promise&lt;[Window](#window)&gt; | Promise对象。返回当前创建的子窗口对象。 |
C
chyyy0213 已提交
410

L
leafly2021 已提交
411
**示例:**
C
chyyy0213 已提交
412

G
ge-yafang 已提交
413 414 415 416
```js
var windowClass = null;
let promise = window.create(this.context, "alertWindow", window.WindowType.TYPE_SYSTEM_ALERT);
promise.then((data)=> {
417 418
    windowClass = data;
    console.info('Succeeded in creating the window. Data:' + JSON.stringify(data));
G
ge-yafang 已提交
419 420 421 422
}).catch((err)=>{
    console.error('Failed to create the Window. Cause:' + JSON.stringify(err));
});
```
Z
zengyawen 已提交
423

G
ge-yafang 已提交
424
## window.find<sup>7+</sup>
Z
zengyawen 已提交
425 426 427

find(id: string, callback: AsyncCallback&lt;Window&gt;): void

G
ge-yafang 已提交
428
查找id所对应的窗口,使用callback异步回调。
C
chyyy0213 已提交
429

G
ge-yafang 已提交
430
**系统能力:** SystemCapability.WindowManager.WindowManager.Core
Z
zengyawen 已提交
431

L
leafly2021 已提交
432
**参数:**
C
chyyy0213 已提交
433

G
ge-yafang 已提交
434 435 436 437
| 参数名   | 类型                                   | 必填 | 说明                                 |
| -------- | -------------------------------------- | ---- | ------------------------------------ |
| id       | string                                 | 是   | 窗口id。                             |
| callback | AsyncCallback&lt;[Window](#window)&gt; | 是   | 回调函数。返回当前查找到的窗口对象。 |
Z
zengyawen 已提交
438

L
leafly2021 已提交
439
**示例:**
C
chyyy0213 已提交
440

G
ge-yafang 已提交
441 442 443 444 445 446 447 448
```js
var windowClass = null;
 window.find("alertWindow", (err, data) => {
   if (err.code) {
       console.error('Failed to find the Window. Cause: ' + JSON.stringify(err));
       return;
   }
   windowClass = data;
449
   console.info('Succeeded in finding the window. Data: ' + JSON.stringify(data));
G
ge-yafang 已提交
450 451
});
```
C
chyyy0213 已提交
452 453 454 455 456

## window.find<sup>7+</sup>

find(id: string): Promise&lt;Window&gt;

G
ge-yafang 已提交
457
查找id所对应的窗口,使用Promise异步回调。
C
chyyy0213 已提交
458

G
ge-yafang 已提交
459
**系统能力:** SystemCapability.WindowManager.WindowManager.Core
C
chyyy0213 已提交
460

L
leafly2021 已提交
461
**参数:**
C
chyyy0213 已提交
462

G
ge-yafang 已提交
463 464 465
| 参数名 | 类型   | 必填 | 说明     |
| ------ | ------ | ---- | -------- |
| id     | string | 是   | 窗口id。 |
C
chyyy0213 已提交
466

L
leafly2021 已提交
467
**返回值:**
C
chyyy0213 已提交
468

G
ge-yafang 已提交
469 470 471
| 类型                             | 说明                                  |
| -------------------------------- | ------------------------------------- |
| Promise&lt;[Window](#window)&gt; | Promise对象。返回当前查找的窗口对象。 |
C
chyyy0213 已提交
472

L
leafly2021 已提交
473
**示例:**
C
chyyy0213 已提交
474

G
ge-yafang 已提交
475 476 477 478 479
```js
var windowClass = null;
let promise = window.find("alertWindow");
promise.then((data)=> {
 	windowClass = data;
480
    console.info('Succeeded in finding the window. Data: ' + JSON.stringify(data));
G
ge-yafang 已提交
481 482 483 484
}).catch((err)=>{
    console.error('Failed to find the Window. Cause: ' + JSON.stringify(err));
});
```
Z
zengyawen 已提交
485

G
ge-yafang 已提交
486
## window.getTopWindow
Z
zengyawen 已提交
487

C
chyyy0213 已提交
488
getTopWindow(callback: AsyncCallback&lt;Window&gt;): void
Z
zengyawen 已提交
489

G
ge-yafang 已提交
490
获取当前应用内最后显示的窗口,使用callback异步回调。
Z
zengyawen 已提交
491

492
**模型约束:** 此接口仅可在FA模型下使用。
G
ge-yafang 已提交
493

G
ge-yafang 已提交
494
**系统能力:** SystemCapability.WindowManager.WindowManager.Core
Z
zengyawen 已提交
495

L
leafly2021 已提交
496
**参数:**
C
chyyy0213 已提交
497

G
ge-yafang 已提交
498 499 500
| 参数名   | 类型                                   | 必填 | 说明                                         |
| -------- | -------------------------------------- | ---- | -------------------------------------------- |
| callback | AsyncCallback&lt;[Window](#window)&gt; | 是   | 回调函数。返回当前应用内最后显示的窗口对象。 |
Z
zengyawen 已提交
501

L
leafly2021 已提交
502
**示例:**
C
chyyy0213 已提交
503

G
ge-yafang 已提交
504 505 506 507 508 509 510 511 512 513 514
```js
var windowClass = null;
window.getTopWindow((err, data) => {
    if (err.code) {
        console.error('Failed to obtain the top window. Cause: ' + JSON.stringify(err));
        return;
    }
    windowClass = data;
    console.info('Succeeded in obtaining the top window. Data: ' + JSON.stringify(data));
});
```
Z
zengyawen 已提交
515

C
chyyy0213 已提交
516 517 518 519
## window.getTopWindow

getTopWindow(): Promise&lt;Window&gt;

G
ge-yafang 已提交
520
获取当前应用内最后显示的窗口,使用Promise异步回调。
C
chyyy0213 已提交
521

522
**模型约束:** 此接口仅可在FA模型下使用。
G
ge-yafang 已提交
523

G
ge-yafang 已提交
524
**系统能力:** SystemCapability.WindowManager.WindowManager.Core
C
chyyy0213 已提交
525

L
leafly2021 已提交
526
**返回值:**
C
chyyy0213 已提交
527

G
ge-yafang 已提交
528 529 530
| 类型                             | 说明                                            |
| -------------------------------- | ----------------------------------------------- |
| Promise&lt;[Window](#window)&gt; | Promise对象。返回当前应用内最后显示的窗口对象。 |
C
chyyy0213 已提交
531

L
leafly2021 已提交
532
**示例:**
C
chyyy0213 已提交
533

G
ge-yafang 已提交
534 535 536 537 538 539 540 541 542 543
```js
var windowClass = null;
let promise = window.getTopWindow();
promise.then((data)=> {
 	windowClass = data;
    console.info('Succeeded in obtaining the top window. Data: ' + JSON.stringify(data));
}).catch((err)=>{
    console.error('Failed to obtain the top window. Cause: ' + JSON.stringify(err));
})
```
C
chyyy0213 已提交
544 545

## window.getTopWindow<sup>8+</sup>
Z
zengyawen 已提交
546

C
chyyy0213 已提交
547
getTopWindow(ctx: Context, callback: AsyncCallback&lt;Window&gt;): void
Z
zengyawen 已提交
548

G
ge-yafang 已提交
549
获取当前应用内最后显示的窗口,使用callback异步回调。
Z
zengyawen 已提交
550

G
ge-yafang 已提交
551
**系统能力:** SystemCapability.WindowManager.WindowManager.Core
Z
zengyawen 已提交
552

L
leafly2021 已提交
553
**参数:**
C
chyyy0213 已提交
554

G
ge-yafang 已提交
555 556 557
| 参数名   | 类型                                   | 必填 | 说明                                                         |
| -------- | -------------------------------------- | ---- | ------------------------------------------------------------ |
| ctx      | Context                                | 是   | 当前应用上下文信息。<br>API version 8的Context定义见[Context](js-apis-Context.md)<br>API version 9的Context定义见[Context](js-apis-ability-context.md)。 |
G
ge-yafang 已提交
558
| callback | AsyncCallback&lt;[Window](#window)&gt; | 是   | 回调函数。返回当前应用内最后显示的窗口对象。                 |
Z
zengyawen 已提交
559

L
leafly2021 已提交
560
**示例:**
C
chyyy0213 已提交
561

G
ge-yafang 已提交
562 563 564 565 566 567 568 569 570 571 572
```js
var windowClass = null;
window.getTopWindow(this.context, (err, data) => {
    if (err.code) {
        console.error('Failed to obtain the top window. Cause: ' + JSON.stringify(err));
        return;
    }
    windowClass = data;
    console.info('Succeeded in obtaining the top window. Data: ' + JSON.stringify(data));
});
```
Z
zengyawen 已提交
573

C
chyyy0213 已提交
574 575 576 577
## window.getTopWindow<sup>8+</sup>

getTopWindow(ctx: Context): Promise&lt;Window&gt;

G
ge-yafang 已提交
578
获取当前应用内最后显示的窗口,使用Promise异步回调。
C
chyyy0213 已提交
579

G
ge-yafang 已提交
580
**系统能力:** SystemCapability.WindowManager.WindowManager.Core
C
chyyy0213 已提交
581

L
leafly2021 已提交
582
**参数:**
C
chyyy0213 已提交
583

G
ge-yafang 已提交
584 585 586
| 参数名 | 类型    | 必填 | 说明                                                         |
| ------ | ------- | ---- | ------------------------------------------------------------ |
| ctx    | Context | 是   | 当前应用上下文信息。<br/>API version 8的Context定义见[Context](js-apis-Context.md)<br/>API version 9的Context定义见[Context](js-apis-ability-context.md)。 |
C
chyyy0213 已提交
587

L
leafly2021 已提交
588
**返回值:**
C
chyyy0213 已提交
589

G
ge-yafang 已提交
590 591 592
| 类型                             | 说明                                            |
| -------------------------------- | ----------------------------------------------- |
| Promise&lt;[Window](#window)&gt; | Promise对象。返回当前应用内最后显示的窗口对象。 |
C
chyyy0213 已提交
593

L
leafly2021 已提交
594
**示例:**
C
chyyy0213 已提交
595

G
ge-yafang 已提交
596 597 598 599 600 601 602 603 604 605
```js
var windowClass = null;
let promise = window.getTopWindow(this.context);
promise.then((data)=> {
 	windowClass = data;
    console.info('Succeeded in obtaining the top window. Data: ' + JSON.stringify(data));
}).catch((err)=>{
    console.error('Failed to obtain the top window. Cause: ' + JSON.stringify(err));
})
```
C
chyyy0213 已提交
606

L
leafly2021 已提交
607 608 609 610 611
## window.minimizeAll<sup>9+</sup>
minimizeAll(id: number, callback: AsyncCallback&lt;void&gt;): void

最小化某显示设备下的所有窗口。

612
**系统接口:** 此接口为系统接口。
L
leafly2021 已提交
613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636

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

**参数:**

| 参数名   | 类型                      | 必填 | 说明           |
| -------- | ------------------------- | ---- | -------------- |
| id       | number                    | 是   | 显示设备[Display](js-apis-display.md#display)的ID号 |
| callback | AsyncCallback&lt;void&gt; | 是   | 回调信息。     |

**示例:**

```js
import display from '@ohos.display'
import window from '@ohos.window'

var displayClass = null;
display.getDefaultDisplay((err, data) => {
    if(err.code) {
        return;
    }
    displayClass = data;
    window.minimizeAll(displayClass.id, (err, data) => {
        if(err.code) {
637
            console.error('Failed to minimize all windows. Cause: ' + JSON.stringify(err));
L
leafly2021 已提交
638 639
            return;
        }
640
        console.info('Succeeded in minimizing all windows.');
L
leafly2021 已提交
641 642 643 644 645 646 647 648 649
    });
});
```

## window.minimizeAll<sup>9+</sup>
minimizeAll(id: number): Promise&lt;void&gt;

最小化某显示设备下的所有窗口。

650
**系统接口:** 此接口为系统接口。
L
leafly2021 已提交
651 652 653 654 655 656 657 658 659

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

**参数:**

| 参数名   | 类型                      | 必填 | 说明           |
| -------- | ------------------------- | ---- | -------------- |
| id       | number                    | 是   | 显示设备[Display](js-apis-display.md#display)的ID号 |

L
leafly2021 已提交
660
**返回值:**
L
leafly2021 已提交
661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679

| 类型                | 说明                      |
| ------------------- | ------------------------- |
| Promise&lt;void&gt; | 无返回结果的Promise对象。 |

**示例:**

```js
import display from '@ohos.display'
import window from '@ohos.window'

var displayClass = null;
display.getDefaultDisplay((err, data) => {
    if(err.code) {
        return;
    }
    displayClass = data;
    let promise = window.minimizeAll(displayClass.id);
    promise.then((data)=> {
680
        console.info('Succeeded in minimizing all windows.');
L
leafly2021 已提交
681
    }).catch((err)=>{
682
        console.error('Failed to minimize all windows. Cause: ' + JSON.stringify(err));
L
leafly2021 已提交
683 684 685 686 687 688 689 690 691
    })
});
```

## window.toggleShownStateForAllAppWindows<sup>9+</sup>
toggleShownStateForAllAppWindows(callback: AsyncCallback&lt;void&gt;): void

多窗口快速切换时隐藏或者恢复应用窗口。

692
**系统接口:** 此接口为系统接口。
L
leafly2021 已提交
693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718

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

**参数:**

| 参数名   | 类型                      | 必填 | 说明           |
| -------- | ------------------------- | ---- | -------------- |
| callback | AsyncCallback&lt;void&gt; | 是   | 回调信息。     |

**示例:**

```js
window.toggleShownStateForAllAppWindows((err, data) => {
    if (err.code) {
        console.error('Failed to toggle shown state for all app windows. Cause: ' + JSON.stringify(err));
        return;
    }
    console.info('Succeeded in toggling shown state for all app windows.');
})
```

## window.toggleShownStateForAllAppWindows<sup>9+</sup>
toggleShownStateForAllAppWindows(): Promise&lt;void&gt;

多窗口快速切换时隐藏或者恢复应用窗口。

719
**系统接口:** 此接口为系统接口。
L
leafly2021 已提交
720 721 722

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

L
leafly2021 已提交
723
**返回值:**
L
leafly2021 已提交
724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744

| 类型                | 说明                      |
| ------------------- | ------------------------- |
| Promise&lt;void&gt; | 无返回结果的Promise对象。 |

**示例:**

```js
let promise = window.toggleShownStateForAllAppWindows();
promise.then((data)=> {
    console.info('Succeeded in toggling shown state for all app windows. Data: ' + JSON.stringify(data));
}).catch((err)=>{
    console.error('Failed to toggle shown state for all app windows. Cause: ' + JSON.stringify(err));
})
```

## window.setWindowLayoutMode<sup>9+</sup>
setWindowLayoutMode(mode: WindowLayoutMode, callback: AsyncCallback&lt;void&gt;): void

设置窗口布局模式。

745
**系统接口:** 此接口为系统接口。
L
leafly2021 已提交
746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768

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

**参数:**

| 参数名   | 类型                      | 必填 | 说明           |
| -------- | ------------------------- | ---- | -------------- |
| mode       | [WindowLayoutMode](#windowlayoutmode9)                  | 是   | 设置的窗口布局模式 |
| callback | AsyncCallback&lt;void&gt; | 是   | 回调信息。     |

**示例:**

```js
window.setWindowLayoutMode(window.WindowLayoutMode.WINDOW_LAYOUT_MODE_CASCADE, (data) => {
    console.info('Succeeded in setting window layout mode. Data: ' + JSON.stringify(data));
});
```

## window.setWindowLayoutMode<sup>9+</sup>
setWindowLayoutMode(mode: WindowLayoutMode): Promise&lt;void&gt;

设置窗口布局模式。

769
**系统接口:** 此接口为系统接口。
L
leafly2021 已提交
770 771 772 773 774 775 776 777 778

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

**参数:**

| 参数名   | 类型                      | 必填 | 说明           |
| -------- | ------------------------- | ---- | -------------- |
| mode       | [WindowLayoutMode](#windowlayoutmode9)                    | 是   | 设置的窗口布局模式 |

L
leafly2021 已提交
779
**返回值:**
L
leafly2021 已提交
780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795

| 类型                | 说明                      |
| ------------------- | ------------------------- |
| Promise&lt;void&gt; | 无返回结果的Promise对象。 |

**示例:**

```js
let promise = window.setWindowLayoutMode(window.WindowLayoutMode.WINDOW_LAYOUT_MODE_CASCADE);
promise.then((data)=> {
    console.info('Succeeded in setting window layout mode. Data: ' + JSON.stringify(data));
}).catch((err)=>{
    console.error('Failed to set window layout mode. Cause: ' + JSON.stringify(err));
})
```

C
chyyy0213 已提交
796
## on('systemBarTintChange')<sup>8+</sup>
Z
zengyawen 已提交
797

C
chyyy0213 已提交
798
on(type: 'systemBarTintChange', callback: Callback&lt;SystemBarTintState&gt;): void
Z
zengyawen 已提交
799

G
ge-yafang 已提交
800
开启状态栏、导航栏属性变化的监听。
Z
zengyawen 已提交
801

802
**系统接口:** 此接口为系统接口。
C
chyyy0213 已提交
803

G
ge-yafang 已提交
804
**系统能力:** SystemCapability.WindowManager.WindowManager.Core
Z
zengyawen 已提交
805

L
leafly2021 已提交
806
**参数:**
C
chyyy0213 已提交
807

G
ge-yafang 已提交
808 809 810
| 参数名   | 类型                                                      | 必填 | 说明                                                         |
| -------- | --------------------------------------------------------- | ---- | ------------------------------------------------------------ |
| type     | string                                                    | 是   | 监听事件,固定为'systemBarTintChange',即导航栏、状态栏属性变化事件。 |
G
ge-yafang 已提交
811
| callback | Callback&lt;[SystemBarTintState](#systembartintstate)&gt; | 是   | 回调函数。返回当前的状态栏、导航栏信息集合。                 |
Z
zengyawen 已提交
812

L
leafly2021 已提交
813
**示例:**
C
chyyy0213 已提交
814

G
ge-yafang 已提交
815 816 817 818 819
```js
window.on('systemBarTintChange', (data) => {
    console.info('Succeeded in enabling the listener for systemBarTint changes. Data: ' + JSON.stringify(data));
});
```
Z
zengyawen 已提交
820

C
chyyy0213 已提交
821
## off('systemBarTintChange')<sup>8+</sup>
Z
zengyawen 已提交
822

C
chyyy0213 已提交
823
off(type: 'systemBarTintChange', callback?: Callback&lt;SystemBarTintState &gt;): void
Z
zengyawen 已提交
824

G
ge-yafang 已提交
825
关闭状态栏、导航栏属性变化的监听。
Z
zengyawen 已提交
826

827
**系统接口:** 此接口为系统接口。
C
chyyy0213 已提交
828

G
ge-yafang 已提交
829
**系统能力:** SystemCapability.WindowManager.WindowManager.Core
Z
zengyawen 已提交
830

L
leafly2021 已提交
831
**参数:**
C
chyyy0213 已提交
832

G
ge-yafang 已提交
833 834 835
| 参数名   | 类型                                                      | 必填 | 说明                                                         |
| -------- | --------------------------------------------------------- | ---- | ------------------------------------------------------------ |
| type     | string                                                    | 是   | 监听事件,固定为'systemBarTintChange',即导航栏、状态栏属性变化事件。 |
G
ge-yafang 已提交
836
| callback | Callback&lt;[SystemBarTintState](#systembartintstate)&gt; | 否   | 回调函数。返回当前的状态栏、导航栏信息集合。                 |
Z
zengyawen 已提交
837

L
leafly2021 已提交
838
**示例:**
C
chyyy0213 已提交
839

G
ge-yafang 已提交
840 841 842
```js
window.off('systemBarTintChange');
```
Z
zengyawen 已提交
843 844 845

## Window

G
ge-yafang 已提交
846 847
当前窗口实例,窗口管理器管理的基本单元。

G
ge-yafang 已提交
848
下列API示例中都需先使用[getTopWindow()](#windowgettopwindow)[create()](#windowcreate7)[find()](#windowfind7)中的任一方法获取到Window实例,再通过此实例调用对应方法。
Z
zengyawen 已提交
849

C
chyyy0213 已提交
850
### hide<sup>7+</sup>
Z
zengyawen 已提交
851

C
chyyy0213 已提交
852
hide (callback: AsyncCallback&lt;void&gt;): void
Z
zengyawen 已提交
853

G
ge-yafang 已提交
854
隐藏当前窗口,使用callback异步回调。
Z
zengyawen 已提交
855

856
**系统接口:** 此接口为系统接口。
C
chyyy0213 已提交
857

G
ge-yafang 已提交
858
**系统能力:** SystemCapability.WindowManager.WindowManager.Core
Z
zengyawen 已提交
859

L
leafly2021 已提交
860
**参数:**
C
chyyy0213 已提交
861

G
ge-yafang 已提交
862 863 864
| 参数名   | 类型                      | 必填 | 说明       |
| -------- | ------------------------- | ---- | ---------- |
| callback | AsyncCallback&lt;void&gt; | 是   | 回调函数。 |
Z
zengyawen 已提交
865

L
leafly2021 已提交
866
**示例:**
C
chyyy0213 已提交
867

G
ge-yafang 已提交
868 869 870 871 872 873
```js
windowClass.hide((err, data) => {
    if (err.code) {
        console.error('Failed to hide the window. Cause: ' + JSON.stringify(err));
        return;
    }
874
    console.info('Succeeded in hiding the window. data: ' + JSON.stringify(data));
G
ge-yafang 已提交
875 876
})
```
Z
zengyawen 已提交
877

C
chyyy0213 已提交
878 879
### hide<sup>7+</sup>

C
chyyy0213 已提交
880
hide(): Promise&lt;void&gt;
C
chyyy0213 已提交
881

G
ge-yafang 已提交
882
隐藏当前窗口,使用Promise异步回调。
C
chyyy0213 已提交
883

884
**系统接口:** 此接口为系统接口。
C
chyyy0213 已提交
885

G
ge-yafang 已提交
886
**系统能力:** SystemCapability.WindowManager.WindowManager.Core
C
chyyy0213 已提交
887

L
leafly2021 已提交
888
**返回值:**
C
chyyy0213 已提交
889

G
ge-yafang 已提交
890 891 892
| 类型                | 说明                      |
| ------------------- | ------------------------- |
| Promise&lt;void&gt; | 无返回结果的Promise对象。 |
C
chyyy0213 已提交
893

L
leafly2021 已提交
894
**示例:**
C
chyyy0213 已提交
895

G
ge-yafang 已提交
896 897 898
```js
let promise = windowClass.hide();
promise.then((data)=> {
899
    console.info('Succeeded in hiding the window. Data: ' + JSON.stringify(data));
G
ge-yafang 已提交
900 901 902 903
}).catch((err)=>{
    console.error('Failed to hide the window. Cause: ' + JSON.stringify(err));
})
```
C
chyyy0213 已提交
904

L
leafly2021 已提交
905 906 907 908 909 910
### hideWithAnimation<sup>9+</sup>

hideWithAnimation(callback: AsyncCallback&lt;void&gt;): void

隐藏当前窗口,过程中播放动画,使用callback异步回调。

911
**系统接口:** 此接口为系统接口。
L
leafly2021 已提交
912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928

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

**参数:**

| 参数名   | 类型                      | 必填 | 说明       |
| -------- | ------------------------- | ---- | ---------- |
| callback | AsyncCallback&lt;void&gt; | 是   | 回调函数。 |

**示例:**

```js
windowClass.hideWithAnimation((err, data) => {
    if (err.code) {
        console.error('Failed to hide the window with animation. Cause: ' + JSON.stringify(err));
        return;
    }
929
    console.info('Succeeded in hiding the window with animation. data: ' + JSON.stringify(data));
L
leafly2021 已提交
930 931 932 933 934 935 936 937 938
})
```

### hideWithAnimation<sup>9+</sup>

hideWithAnimation(): Promise&lt;void&gt;

隐藏当前窗口,过程中播放动画,使用Promise异步回调。

939
**系统接口:** 此接口为系统接口。
L
leafly2021 已提交
940 941 942 943 944 945 946 947 948 949 950 951 952 953

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

**返回值:**

| 类型                | 说明                      |
| ------------------- | ------------------------- |
| Promise&lt;void&gt; | 无返回结果的Promise对象。 |

**示例:**

```js
let promise = windowClass.hideWithAnimation();
promise.then((data)=> {
954
    console.info('Succeeded in hiding the window with animation. Data: ' + JSON.stringify(data));
L
leafly2021 已提交
955 956 957 958 959
}).catch((err)=>{
    console.error('Failed to hide the window with animation. Cause: ' + JSON.stringify(err));
})
```

C
chyyy0213 已提交
960
### show<sup>7+</sup>
Z
zengyawen 已提交
961

C
chyyy0213 已提交
962
show(callback: AsyncCallback&lt;void&gt;): void
Z
zengyawen 已提交
963

G
ge-yafang 已提交
964
显示当前窗口,使用callback异步回调。
Z
zengyawen 已提交
965

G
ge-yafang 已提交
966
**系统能力:** SystemCapability.WindowManager.WindowManager.Core
Z
zengyawen 已提交
967

L
leafly2021 已提交
968
**参数:**
C
chyyy0213 已提交
969

G
ge-yafang 已提交
970 971 972
| 参数名   | 类型                      | 必填 | 说明       |
| -------- | ------------------------- | ---- | ---------- |
| callback | AsyncCallback&lt;void&gt; | 是   | 回调函数。 |
Z
zengyawen 已提交
973

L
leafly2021 已提交
974
**示例:**
C
chyyy0213 已提交
975

G
ge-yafang 已提交
976 977 978 979 980 981 982 983 984
```js
windowClass.show((err, data) => {
    if (err.code) {
        console.error('Failed to show the window. Cause: ' + JSON.stringify(err));
        return;
    }
    console.info('Succeeded in showing the window. Data: ' + JSON.stringify(data));
})
```
Z
zengyawen 已提交
985

C
chyyy0213 已提交
986 987 988 989
### show<sup>7+</sup>

show(): Promise&lt;void&gt;

G
ge-yafang 已提交
990
显示当前窗口,使用Promise异步回调。
C
chyyy0213 已提交
991

G
ge-yafang 已提交
992
**系统能力:** SystemCapability.WindowManager.WindowManager.Core
C
chyyy0213 已提交
993

L
leafly2021 已提交
994
**返回值:**
C
chyyy0213 已提交
995

G
ge-yafang 已提交
996 997 998
| 类型                | 说明                      |
| ------------------- | ------------------------- |
| Promise&lt;void&gt; | 无返回结果的Promise对象。 |
C
chyyy0213 已提交
999

L
leafly2021 已提交
1000
**示例:**
C
chyyy0213 已提交
1001

G
ge-yafang 已提交
1002 1003 1004 1005 1006 1007 1008 1009
```js
let promise = windowClass.show();
promise.then((data)=> {
    console.info('Succeeded in showing the window. Data: ' + JSON.stringify(data));
}).catch((err)=>{
    console.error('Failed to show the window. Cause: ' + JSON.stringify(err));
})
```
C
chyyy0213 已提交
1010

L
leafly2021 已提交
1011 1012 1013 1014 1015 1016
### showWithAnimation<sup>9+</sup>

showWithAnimation(callback: AsyncCallback&lt;void&gt;): void

显示当前窗口,过程中播放动画,使用callback异步回调。

1017
**系统接口:** 此接口为系统接口。
L
leafly2021 已提交
1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044

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

**参数:**

| 参数名   | 类型                      | 必填 | 说明       |
| -------- | ------------------------- | ---- | ---------- |
| callback | AsyncCallback&lt;void&gt; | 是   | 回调函数。 |

**示例:**

```js
windowClass.showWithAnimation((err, data) => {
    if (err.code) {
        console.error('Failed to show the window with animation. Cause: ' + JSON.stringify(err));
        return;
    }
    console.info('Succeeded in showing the window with animation. Data: ' + JSON.stringify(data));
})
```

### showWithAnimation<sup>9+</sup>

showWithAnimation(): Promise&lt;void&gt;

显示当前窗口,过程中播放动画,使用Promise异步回调。

1045
**系统接口:** 此接口为系统接口。
L
leafly2021 已提交
1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065

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

**返回值:**

| 类型                | 说明                      |
| ------------------- | ------------------------- |
| Promise&lt;void&gt; | 无返回结果的Promise对象。 |

**示例:**

```js
let promise = windowClass.showWithAnimation();
promise.then((data)=> {
    console.info('Succeeded in showing the window with animation. Data: ' + JSON.stringify(data));
}).catch((err)=>{
    console.error('Failed to show the window with animation. Cause: ' + JSON.stringify(err));
})
```

C
chyyy0213 已提交
1066 1067 1068
### destroy<sup>7+</sup>

destroy(callback: AsyncCallback&lt;void&gt;): void
Z
zengyawen 已提交
1069

G
ge-yafang 已提交
1070
销毁当前窗口,使用callback异步回调。
Z
zengyawen 已提交
1071

G
ge-yafang 已提交
1072
**系统能力:** SystemCapability.WindowManager.WindowManager.Core
Z
zengyawen 已提交
1073

L
leafly2021 已提交
1074
**参数:**
C
chyyy0213 已提交
1075

G
ge-yafang 已提交
1076 1077 1078
| 参数名   | 类型                      | 必填 | 说明       |
| -------- | ------------------------- | ---- | ---------- |
| callback | AsyncCallback&lt;void&gt; | 是   | 回调函数。 |
Z
zengyawen 已提交
1079

L
leafly2021 已提交
1080
**示例:**
C
chyyy0213 已提交
1081

G
ge-yafang 已提交
1082 1083 1084 1085 1086 1087 1088 1089 1090
```js
windowClass.destroy((err, data) => {
    if (err.code) {
        console.error('Failed to destroy the window. Cause:' + JSON.stringify(err));
        return;
    }
    console.info('Succeeded in destroying the window. Data: ' + JSON.stringify(data));
})
```
Z
zengyawen 已提交
1091

C
chyyy0213 已提交
1092 1093 1094 1095
### destroy<sup>7+</sup>

destroy(): Promise&lt;void&gt;

G
ge-yafang 已提交
1096
销毁当前窗口,使用Promise异步回调。
C
chyyy0213 已提交
1097

G
ge-yafang 已提交
1098
**系统能力:** SystemCapability.WindowManager.WindowManager.Core
C
chyyy0213 已提交
1099

L
leafly2021 已提交
1100
**返回值:**
C
chyyy0213 已提交
1101

G
ge-yafang 已提交
1102 1103 1104
| 类型                | 说明                      |
| ------------------- | ------------------------- |
| Promise&lt;void&gt; | 无返回结果的Promise对象。 |
C
chyyy0213 已提交
1105

L
leafly2021 已提交
1106
**示例:**
C
chyyy0213 已提交
1107

G
ge-yafang 已提交
1108 1109 1110 1111 1112 1113 1114 1115
```js
let promise = windowClass.destroy();
promise.then((data)=> {
    console.info('Succeeded in destroying the window. Data: ' + JSON.stringify(data));
}).catch((err)=>{
    console.error('Failed to destroy the window. Cause: ' + JSON.stringify(err));
})
```
C
chyyy0213 已提交
1116

C
chyyy0213 已提交
1117
### moveTo<sup>7+</sup>
Z
zengyawen 已提交
1118

C
chyyy0213 已提交
1119
moveTo(x: number, y: number, callback: AsyncCallback&lt;void&gt;): void
Z
zengyawen 已提交
1120

G
ge-yafang 已提交
1121
移动窗口位置,使用callback异步回调。
C
chyyy0213 已提交
1122

G
ge-yafang 已提交
1123
**系统能力:** SystemCapability.WindowManager.WindowManager.Core
Z
zengyawen 已提交
1124

L
leafly2021 已提交
1125
**参数:**
C
chyyy0213 已提交
1126

G
ge-yafang 已提交
1127 1128 1129 1130 1131
| 参数名   | 类型                      | 必填 | 说明                                              |
| -------- | ------------------------- | ---- | ------------------------------------------------- |
| x        | number                    | 是   | 窗口在x轴方向移动的值,值为正表示右移,单位为px。 |
| y        | number                    | 是   | 窗口在y轴方向移动的值,值为正表示下移,单位为px。 |
| callback | AsyncCallback&lt;void&gt; | 是   | 回调函数。                                        |
Z
zengyawen 已提交
1132

L
leafly2021 已提交
1133
**示例:**
C
chyyy0213 已提交
1134

G
ge-yafang 已提交
1135 1136 1137 1138 1139 1140
```js
windowClass.moveTo(300, 300, (err, data)=>{
    if (err.code) {
        console.error('Failed to move the window. Cause:' + JSON.stringify(err));
        return;
    }
1141
    console.info('Succeeded in moving the window. Data: ' + JSON.stringify(data));
G
ge-yafang 已提交
1142 1143 1144

});
```
Z
zengyawen 已提交
1145

C
chyyy0213 已提交
1146 1147 1148 1149
### moveTo<sup>7+</sup>

moveTo(x: number, y: number): Promise&lt;void&gt;

G
ge-yafang 已提交
1150
移动窗口位置,使用Promise异步回调。
C
chyyy0213 已提交
1151

G
ge-yafang 已提交
1152
**系统能力:** SystemCapability.WindowManager.WindowManager.Core
C
chyyy0213 已提交
1153

L
leafly2021 已提交
1154
**参数:**
C
chyyy0213 已提交
1155

G
ge-yafang 已提交
1156 1157 1158 1159
| 参数名 | 类型   | 必填 | 说明                                              |
| ------ | ------ | ---- | ------------------------------------------------- |
| x      | number | 是   | 窗口在x轴方向移动的值,值为正表示右移,单位为px。 |
| y      | number | 是   | 窗口在y轴方向移动的值,值为正表示下移,单位为px。 |
C
chyyy0213 已提交
1160

L
leafly2021 已提交
1161
**返回值:**
C
chyyy0213 已提交
1162

G
ge-yafang 已提交
1163 1164 1165
| 类型                | 说明                      |
| ------------------- | ------------------------- |
| Promise&lt;void&gt; | 无返回结果的Promise对象。 |
C
chyyy0213 已提交
1166

L
leafly2021 已提交
1167
**示例:**
C
chyyy0213 已提交
1168

G
ge-yafang 已提交
1169 1170 1171
```js
let promise = windowClass.moveTo(300, 300);
promise.then((data)=> {
1172
    console.info('Succeeded in moving the window. Data: ' + JSON.stringify(data));
G
ge-yafang 已提交
1173 1174 1175 1176
}).catch((err)=>{
    console.error('Failed to move the window. Cause: ' + JSON.stringify(err));
})
```
C
chyyy0213 已提交
1177

C
chyyy0213 已提交
1178 1179 1180
### resetSize<sup>7+</sup>

resetSize(width: number, height: number, callback: AsyncCallback&lt;void&gt;): void
Z
zengyawen 已提交
1181

G
ge-yafang 已提交
1182
改变当前窗口大小,使用callback异步回调。
Z
zengyawen 已提交
1183

G
ge-yafang 已提交
1184
**系统能力:** SystemCapability.WindowManager.WindowManager.Core
Z
zengyawen 已提交
1185

L
leafly2021 已提交
1186
**参数:**
C
chyyy0213 已提交
1187

G
ge-yafang 已提交
1188 1189 1190 1191 1192
| 参数名   | 类型                      | 必填 | 说明                       |
| -------- | ------------------------- | ---- | -------------------------- |
| width    | number                    | 是   | 目标窗口的宽度,单位为px。 |
| height   | number                    | 是   | 目标窗口的高度,单位为px。 |
| callback | AsyncCallback&lt;void&gt; | 是   | 回调函数。                 |
Z
zengyawen 已提交
1193

L
leafly2021 已提交
1194
**示例:**
C
chyyy0213 已提交
1195

G
ge-yafang 已提交
1196 1197 1198 1199 1200 1201
```js
windowClass.resetSize(500, 1000, (err, data) => {
    if (err.code) {
        console.error('Failed to change the window size. Cause:' + JSON.stringify(err));
        return;
    }
1202
    console.info('Succeeded in changing the window size. Data: ' + JSON.stringify(data));
G
ge-yafang 已提交
1203 1204
});
```
Z
zengyawen 已提交
1205

C
chyyy0213 已提交
1206 1207 1208 1209
### resetSize<sup>7+</sup>

resetSize(width: number, height: number): Promise&lt;void&gt;

G
ge-yafang 已提交
1210
改变当前窗口大小,使用Promise异步回调。
C
chyyy0213 已提交
1211

G
ge-yafang 已提交
1212
**系统能力:** SystemCapability.WindowManager.WindowManager.Core
C
chyyy0213 已提交
1213

L
leafly2021 已提交
1214
**参数:**
C
chyyy0213 已提交
1215

G
ge-yafang 已提交
1216 1217 1218 1219
| 参数名 | 类型   | 必填 | 说明                       |
| ------ | ------ | ---- | -------------------------- |
| width  | number | 是   | 目标窗口的宽度,单位为px。 |
| height | number | 是   | 目标窗口的高度,单位为px。 |
C
chyyy0213 已提交
1220

L
leafly2021 已提交
1221
**返回值:**
C
chyyy0213 已提交
1222

G
ge-yafang 已提交
1223 1224 1225
| 类型                | 说明                      |
| ------------------- | ------------------------- |
| Promise&lt;void&gt; | 无返回结果的Promise对象。 |
C
chyyy0213 已提交
1226

L
leafly2021 已提交
1227
**示例:**
C
chyyy0213 已提交
1228

G
ge-yafang 已提交
1229 1230 1231
```js
let promise = windowClass.resetSize(500, 1000);
promise.then((data)=> {
1232
    console.info('Succeeded in changing the window size. Data: ' + JSON.stringify(data));
G
ge-yafang 已提交
1233 1234 1235 1236
}).catch((err)=>{
    console.error('Failed to change the window size. Cause: ' + JSON.stringify(err));
});
```
C
chyyy0213 已提交
1237

L
leafly2021 已提交
1238
### setWindowType<sup>(deprecated)</sup>
1239 1240 1241

setWindowType(type: WindowType, callback: AsyncCallback&lt;void&gt;): void

G
ge-yafang 已提交
1242
设置窗口类型,使用callback异步回调。
1243

1244
**系统接口:** 此接口为系统接口。
C
chyyy0213 已提交
1245

L
leafly2021 已提交
1246 1247 1248 1249
> **说明:** 从API version 9开始废弃。
>
> 从 API version 7开始支持。

G
ge-yafang 已提交
1250
**系统能力:** SystemCapability.WindowManager.WindowManager.Core
C
chyyy0213 已提交
1251

L
leafly2021 已提交
1252
**参数:**
C
chyyy0213 已提交
1253

G
ge-yafang 已提交
1254 1255 1256 1257
| 参数名   | 类型                      | 必填 | 说明       |
| -------- | ------------------------- | ---- | ---------- |
| type     | [WindowType](#windowtype) | 是   | 窗口类型。 |
| callback | AsyncCallback&lt;void&gt; | 是   | 回调函数。 |
1258

L
leafly2021 已提交
1259
**示例:**
C
chyyy0213 已提交
1260

G
ge-yafang 已提交
1261 1262 1263 1264 1265 1266 1267 1268 1269 1270
```js
var type = window.WindowType.TYPE_APP;
windowClass.setWindowType(type, (err, data) => {
  if (err.code) {
      console.error('Failed to set the window type. Cause: ' + JSON.stringify(err));
      return;
  }
  console.info('Succeeded in setting the window type. Data: ' + JSON.stringify(data));
});
```
1271

L
leafly2021 已提交
1272
### setWindowType<sup>(deprecated)</sup>
C
chyyy0213 已提交
1273 1274 1275

setWindowType(type: WindowType): Promise&lt;void&gt;

G
ge-yafang 已提交
1276
设置窗口类型,使用Promise异步回调。
C
chyyy0213 已提交
1277

1278
**系统接口:** 此接口为系统接口。
C
chyyy0213 已提交
1279

L
leafly2021 已提交
1280 1281 1282 1283
> **说明:** 从API version 9开始废弃。
>
> 从 API version 7开始支持。

G
ge-yafang 已提交
1284
**系统能力:** SystemCapability.WindowManager.WindowManager.Core
C
chyyy0213 已提交
1285

L
leafly2021 已提交
1286
**参数:**
C
chyyy0213 已提交
1287

G
ge-yafang 已提交
1288 1289 1290
| 参数名 | 类型                      | 必填 | 说明       |
| ------ | ------------------------- | ---- | ---------- |
| type   | [WindowType](#windowtype) | 是   | 窗口类型。 |
C
chyyy0213 已提交
1291

L
leafly2021 已提交
1292
**返回值:**
C
chyyy0213 已提交
1293

G
ge-yafang 已提交
1294 1295 1296
| 类型                | 说明                      |
| ------------------- | ------------------------- |
| Promise&lt;void&gt; | 无返回结果的Promise对象。 |
C
chyyy0213 已提交
1297

L
leafly2021 已提交
1298
**示例:**
C
chyyy0213 已提交
1299

G
ge-yafang 已提交
1300 1301 1302 1303 1304 1305 1306 1307 1308
```js
var type = window.WindowType.TYPE_APP;
let promise = windowClass.setWindowType(type);
promise.then((data)=> {
    console.info('Succeeded in setting the window type. Data: ' + JSON.stringify(data));
}).catch((err)=>{
    console.error('Failed to set the window type. Cause: ' + JSON.stringify(err));
});
```
C
chyyy0213 已提交
1309

C
chyyy0213 已提交
1310
### getProperties
Z
zengyawen 已提交
1311

C
chyyy0213 已提交
1312
getProperties(callback: AsyncCallback&lt;WindowProperties&gt;): void
Z
zengyawen 已提交
1313

G
ge-yafang 已提交
1314
获取当前窗口的属性,使用callback异步回调,返回WindowProperties。
Z
zengyawen 已提交
1315

G
ge-yafang 已提交
1316
**系统能力:** SystemCapability.WindowManager.WindowManager.Core
Z
zengyawen 已提交
1317

L
leafly2021 已提交
1318
**参数:**
C
chyyy0213 已提交
1319

G
ge-yafang 已提交
1320 1321 1322
| 参数名   | 类型                                                       | 必填 | 说明                         |
| -------- | ---------------------------------------------------------- | ---- | ---------------------------- |
| callback | AsyncCallback&lt;[WindowProperties](#windowproperties)&gt; | 是   | 回调函数。返回当前窗口属性。 |
Z
zengyawen 已提交
1323

L
leafly2021 已提交
1324
**示例:**
C
chyyy0213 已提交
1325

G
ge-yafang 已提交
1326 1327 1328 1329 1330 1331 1332 1333 1334
```js
windowClass.getProperties((err, data) => {
    if (err.code) {
        console.error('Failed to obtain the window properties. Cause: ' + JSON.stringify(err));
        return;
    }
    console.info('Succeeded in obtaining the window properties. Data: ' + JSON.stringify(data));
});
```
Z
zengyawen 已提交
1335

C
chyyy0213 已提交
1336 1337 1338 1339
### getProperties

getProperties(): Promise&lt;WindowProperties&gt;

G
ge-yafang 已提交
1340
获取当前窗口的属性,使用Promise异步回调,返回WindowProperties。
C
chyyy0213 已提交
1341

G
ge-yafang 已提交
1342
**系统能力:** SystemCapability.WindowManager.WindowManager.Core
C
chyyy0213 已提交
1343

L
leafly2021 已提交
1344
**返回值:**
C
chyyy0213 已提交
1345

G
ge-yafang 已提交
1346 1347 1348
| 类型                                                 | 说明                            |
| ---------------------------------------------------- | ------------------------------- |
| Promise&lt;[WindowProperties](#windowproperties)&gt; | Promise对象。返回当前窗口属性。 |
C
chyyy0213 已提交
1349

L
leafly2021 已提交
1350
**示例:**
C
chyyy0213 已提交
1351

G
ge-yafang 已提交
1352 1353 1354 1355 1356 1357 1358 1359
```js
let promise = windowClass.getProperties();
promise.then((data)=> {
    console.info('Succeeded in obtaining the window properties. Data: ' + JSON.stringify(data));
}).catch((err)=>{
    console.error('Failed to obtain the window properties. Cause: ' + JSON.stringify(err));
});
```
C
chyyy0213 已提交
1360

C
chyyy0213 已提交
1361
### getAvoidArea<sup>7+</sup>
Z
zengyawen 已提交
1362

1363
getAvoidArea(type: [AvoidAreaType](#avoidareatype7), callback: AsyncCallback&lt;[AvoidArea](#avoidarea7)&gt;): void
Z
zengyawen 已提交
1364

G
ge-yafang 已提交
1365
获取窗口内容规避的区域,如系统的系统栏区域、凹凸区域。使用callback异步回调。
C
chyyy0213 已提交
1366

G
ge-yafang 已提交
1367
**系统能力:** SystemCapability.WindowManager.WindowManager.Core
Z
zengyawen 已提交
1368

L
leafly2021 已提交
1369
**参数:**
C
chyyy0213 已提交
1370

1371 1372 1373 1374
| 参数名   | 类型                                            | 必填 | 说明                                                         |
| -------- |-----------------------------------------------| ---- | ------------------------------------------------------------ |
| type     | [AvoidAreaType](#avoidareatype7)              | 是   | 表示规避区类型。type为TYPE_SYSTEM,表示系统默认区域。type为TYPE_CUTOUT,表示刘海屏区域。type为TYPE_SYSTEM_GESTURE,表示手势区域。type为TYPE_KEYBOARD,表示软键盘区域。 |
| callback | AsyncCallback&lt;[AvoidArea](#avoidarea7)&gt; | 是   | 回调函数。返回窗口内容规避区域。                             |
Z
zengyawen 已提交
1375

L
leafly2021 已提交
1376
**示例:**
C
chyyy0213 已提交
1377

G
ge-yafang 已提交
1378 1379 1380 1381 1382 1383 1384 1385 1386 1387
```js
var type = window.AvoidAreaType.TYPE_SYSTEM;
windowClass.getAvoidArea(type, (err, data) => {
    if (err.code) {
        console.error('Failed to obtain the area. Cause:' + JSON.stringify(err));
        return;
    }
    console.info('Succeeded in obtaining the area. Data:' + JSON.stringify(data));
});
```
Z
zengyawen 已提交
1388

C
chyyy0213 已提交
1389 1390
### getAvoidArea<sup>7+</sup>

1391
getAvoidArea(type: [AvoidAreaType](#avoidareatype7)): Promise&lt;[AvoidArea](#avoidarea7)&gt;
C
chyyy0213 已提交
1392

G
ge-yafang 已提交
1393
获取窗口内容规避的区域,如系统的系统栏区域、凹凸区域。使用Promise异步回调。
C
chyyy0213 已提交
1394

G
ge-yafang 已提交
1395
**系统能力:** SystemCapability.WindowManager.WindowManager.Core
C
chyyy0213 已提交
1396

L
leafly2021 已提交
1397
**参数:**
C
chyyy0213 已提交
1398

1399 1400 1401
| 参数名 | 类型                               | 必填 | 说明                                                         |
| ------ |----------------------------------| ---- | ------------------------------------------------------------ |
| type   | [AvoidAreaType](#avoidareatype7) | 是   | 表示规避区类型。type为TYPE_SYSTEM,表示系统默认区域。type为TYPE_CUTOUT,表示刘海屏区域。type为TYPE_SYSTEM_GESTURE,表示手势区域。type为TYPE_KEYBOARD,表示软键盘区域。 |
C
chyyy0213 已提交
1402

L
leafly2021 已提交
1403
**返回值:**
C
chyyy0213 已提交
1404

1405 1406 1407
| 类型                                      | 说明                                |
|-----------------------------------------| ----------------------------------- |
| Promise&lt;[AvoidArea](#avoidarea7)&gt; | Promise对象。返回窗口内容规避区域。 |
C
chyyy0213 已提交
1408

L
leafly2021 已提交
1409
**示例:**
C
chyyy0213 已提交
1410

G
ge-yafang 已提交
1411
```js
1412 1413
var type = window.AvoidAreaType.TYPE_SYSTEM;
let promise = windowClass.getAvoidArea(type);
G
ge-yafang 已提交
1414 1415 1416 1417 1418 1419
promise.then((data)=> {
    console.info('Succeeded in obtaining the area. Data:' + JSON.stringify(data));
}).catch((err)=>{
    console.error('Failed to obtain the area. Cause:' + JSON.stringify(err));
});
```
C
chyyy0213 已提交
1420

C
chyyy0213 已提交
1421 1422 1423
### setFullScreen

setFullScreen(isFullScreen: boolean, callback: AsyncCallback&lt;void&gt;): void
Z
zengyawen 已提交
1424

G
ge-yafang 已提交
1425
设置是否为全屏状态,使用callback异步回调。
Z
zengyawen 已提交
1426

G
ge-yafang 已提交
1427
**系统能力:** SystemCapability.WindowManager.WindowManager.Core
Z
zengyawen 已提交
1428

L
leafly2021 已提交
1429
**参数:**
C
chyyy0213 已提交
1430

G
ge-yafang 已提交
1431 1432 1433 1434
| 参数名       | 类型                      | 必填 | 说明                                           |
| ------------ | ------------------------- | ---- | ---------------------------------------------- |
| isFullScreen | boolean                   | 是   | 是否设为全屏状态,且全屏状态隐藏状态栏导航栏。 |
| callback     | AsyncCallback&lt;void&gt; | 是   | 回调函数。                                     |
Z
zengyawen 已提交
1435

L
leafly2021 已提交
1436
**示例:**
C
chyyy0213 已提交
1437

G
ge-yafang 已提交
1438 1439 1440 1441 1442 1443 1444 1445 1446 1447
```js
var isFullScreen = true;
windowClass.setFullScreen(isFullScreen, (err, data) => {
    if (err.code) {
        console.error('Failed to enable the full-screen mode. Cause: ' + JSON.stringify(err));
        return;
    }
    console.info('Succeeded in enabling the full-screen mode. Data: ' + JSON.stringify(data));
});
```
C
chyyy0213 已提交
1448 1449 1450 1451 1452

### setFullScreen

setFullScreen(isFullScreen: boolean): Promise&lt;void&gt;

G
ge-yafang 已提交
1453
设置是否为全屏状态,使用Promise异步回调。
C
chyyy0213 已提交
1454

G
ge-yafang 已提交
1455
**系统能力:** SystemCapability.WindowManager.WindowManager.Core
C
chyyy0213 已提交
1456

L
leafly2021 已提交
1457
**参数:**
C
chyyy0213 已提交
1458

G
ge-yafang 已提交
1459 1460 1461
| 参数名       | 类型    | 必填 | 说明                                           |
| ------------ | ------- | ---- | ---------------------------------------------- |
| isFullScreen | boolean | 是   | 是否设为全屏状态,且全屏状态隐藏状态栏导航栏。 |
C
chyyy0213 已提交
1462

L
leafly2021 已提交
1463
**返回值:**
C
chyyy0213 已提交
1464

G
ge-yafang 已提交
1465 1466 1467
| 类型                | 说明                      |
| ------------------- | ------------------------- |
| Promise&lt;void&gt; | 无返回结果的Promise对象。 |
C
chyyy0213 已提交
1468

L
leafly2021 已提交
1469
**示例:**
C
chyyy0213 已提交
1470

G
ge-yafang 已提交
1471 1472 1473 1474 1475 1476 1477 1478 1479
```js
var isFullScreen = true;
let promise = windowClass.setFullScreen(isFullScreen);
promise.then((data)=> {
    console.info('Succeeded in enabling the full-screen mode. Data: ' + JSON.stringify(data));
}).catch((err)=>{
    console.error('Failed to enable the full-screen mode. Cause: ' + JSON.stringify(err));
});
```
Z
zengyawen 已提交
1480

C
chyyy0213 已提交
1481 1482 1483
### setLayoutFullScreen<sup>7+</sup>

setLayoutFullScreen(isLayoutFullScreen: boolean, callback: AsyncCallback&lt;void&gt;): void
Z
zengyawen 已提交
1484

G
ge-yafang 已提交
1485
设置窗口的布局是否为全屏显示状态,使用callback异步回调。
Z
zengyawen 已提交
1486

G
ge-yafang 已提交
1487
**系统能力:** SystemCapability.WindowManager.WindowManager.Core
Z
zengyawen 已提交
1488

L
leafly2021 已提交
1489
**参数:**
C
chyyy0213 已提交
1490

G
ge-yafang 已提交
1491 1492 1493 1494
| 参数名             | 类型                      | 必填 | 说明                                                         |
| ------------------ | ------------------------- | ---- | ------------------------------------------------------------ |
| isLayoutFullScreen | boolean                   | 是   | 窗口的布局是否为全屏显示状态,且全屏状态下状态栏、导航栏仍然显示。 |
| callback           | AsyncCallback&lt;void&gt; | 是   | 回调函数。                                                   |
Z
zengyawen 已提交
1495

L
leafly2021 已提交
1496
**示例:**
C
chyyy0213 已提交
1497

G
ge-yafang 已提交
1498 1499 1500 1501 1502 1503 1504 1505 1506 1507
```js
var isLayoutFullScreen= true;
windowClass.setLayoutFullScreen(isLayoutFullScreen, (err, data) => {
    if (err.code) {
        console.error('Failed to set the window layout to full-screen mode. Cause:' + JSON.stringify(err));
        return;
    }
    console.info('Succeeded in setting the window layout to full-screen mode. Data: ' + JSON.stringify(data));
});
```
C
chyyy0213 已提交
1508 1509 1510 1511 1512

### setLayoutFullScreen<sup>7+</sup>

setLayoutFullScreen(isLayoutFullScreen: boolean): Promise&lt;void&gt;

G
ge-yafang 已提交
1513
设置窗口的布局是否为全屏显示状态,使用Promise异步回调。
C
chyyy0213 已提交
1514

G
ge-yafang 已提交
1515
**系统能力:** SystemCapability.WindowManager.WindowManager.Core
C
chyyy0213 已提交
1516

L
leafly2021 已提交
1517
**参数:**
C
chyyy0213 已提交
1518

G
ge-yafang 已提交
1519 1520 1521
| 参数名             | 类型    | 必填 | 说明                                                         |
| ------------------ | ------- | ---- | ------------------------------------------------------------ |
| isLayoutFullScreen | boolean | 是   | 窗口的布局是否为全屏显示状态,且全屏状态下状态栏、导航栏仍然显示。 |
C
chyyy0213 已提交
1522

L
leafly2021 已提交
1523
**返回值:**
C
chyyy0213 已提交
1524

G
ge-yafang 已提交
1525 1526 1527
| 类型                | 说明                      |
| ------------------- | ------------------------- |
| Promise&lt;void&gt; | 无返回结果的Promise对象。 |
C
chyyy0213 已提交
1528

L
leafly2021 已提交
1529
**示例:**
C
chyyy0213 已提交
1530

G
ge-yafang 已提交
1531 1532 1533 1534 1535 1536 1537 1538 1539
```js
var isLayoutFullScreen = true;
let promise = windowClass.setLayoutFullScreen(isLayoutFullScreen);
promise.then((data)=> {
    console.info('Succeeded in setting the window layout to full-screen mode. Data: ' + JSON.stringify(data));
}).catch((err)=>{
    console.error('Failed to set the window layout to full-screen mode. Cause:' + JSON.stringify(err));
});
```
Z
zengyawen 已提交
1540 1541 1542

### setSystemBarEnable<sup>7+</sup>

C
chyyy0213 已提交
1543
setSystemBarEnable(names: Array<'status' | 'navigation'>, callback: AsyncCallback&lt;void&gt;): void
Z
zengyawen 已提交
1544

G
ge-yafang 已提交
1545
设置导航栏、状态栏的可见模式,使用callback异步回调。
Z
zengyawen 已提交
1546

G
ge-yafang 已提交
1547
**系统能力:** SystemCapability.WindowManager.WindowManager.Core
C
chyyy0213 已提交
1548

L
leafly2021 已提交
1549
**参数:**
C
chyyy0213 已提交
1550

G
ge-yafang 已提交
1551 1552
| 参数名   | 类型                      | 必填 | 说明                                                         |
| -------- | ------------------------- | ---- | ------------------------------------------------------------ |
G
ge-yafang 已提交
1553
| names    | Array                     | 是   | 设置状态栏和导航栏是否显示。<br>例如,需全部显示,该参数设置为["status",&nbsp;"navigation"];不设置,则默认不显示。 |
G
ge-yafang 已提交
1554
| callback | AsyncCallback&lt;void&gt; | 是   | 回调函数。                                                   |
Z
zengyawen 已提交
1555

L
leafly2021 已提交
1556
**示例:**
C
chyyy0213 已提交
1557

G
ge-yafang 已提交
1558
```js
1559 1560
// 此处以不显示导航栏、状态栏为例
var names = [];
G
ge-yafang 已提交
1561 1562
windowClass.setSystemBarEnable(names, (err, data) => {
    if (err.code) {
1563
        console.error('Failed to set the system bar to be invisible. Cause:' + JSON.stringify(err));
G
ge-yafang 已提交
1564 1565
        return;
    }
1566
    console.info('Succeeded in setting the system bar to be invisible. Data: ' + JSON.stringify(data));
G
ge-yafang 已提交
1567 1568
});
```
C
chyyy0213 已提交
1569 1570 1571 1572 1573

### setSystemBarEnable<sup>7+</sup>

setSystemBarEnable(names: Array<'status' | 'navigation'>): Promise&lt;void&gt;

G
ge-yafang 已提交
1574
设置导航栏、状态栏的可见模式,使用Promise异步回调。
C
chyyy0213 已提交
1575

G
ge-yafang 已提交
1576
**系统能力:** SystemCapability.WindowManager.WindowManager.Core
C
chyyy0213 已提交
1577

L
leafly2021 已提交
1578
**参数:**
C
chyyy0213 已提交
1579

G
ge-yafang 已提交
1580 1581
| 参数名 | 类型  | 必填 | 说明                                                         |
| ------ | ----- | ---- | ------------------------------------------------------------ |
G
ge-yafang 已提交
1582
| names  | Array | 是   | 设置状态栏和导航栏是否显示。<br>例如,需全部显示,该参数设置为["status",&nbsp;"navigation"];不设置,则默认不显示。 |
C
chyyy0213 已提交
1583

L
leafly2021 已提交
1584
**返回值:**
C
chyyy0213 已提交
1585

G
ge-yafang 已提交
1586 1587 1588
| 类型                | 说明                      |
| ------------------- | ------------------------- |
| Promise&lt;void&gt; | 无返回结果的Promise对象。 |
C
chyyy0213 已提交
1589

L
leafly2021 已提交
1590
**示例:**
C
chyyy0213 已提交
1591

G
ge-yafang 已提交
1592
```js
1593 1594
// 此处以不显示导航栏、状态栏为例
var names = [];
G
ge-yafang 已提交
1595 1596
let promise = windowClass.setSystemBarEnable(names);
promise.then((data)=> {
1597
    console.info('Succeeded in setting the system bar to be invisible. Data: ' + JSON.stringify(data));
G
ge-yafang 已提交
1598
}).catch((err)=>{
1599
    console.error('Failed to set the system bar to be invisible. Cause:' + JSON.stringify(err));
G
ge-yafang 已提交
1600 1601
});
```
Z
zengyawen 已提交
1602 1603 1604 1605 1606

### setSystemBarProperties

setSystemBarProperties(systemBarProperties: SystemBarProperties, callback: AsyncCallback&lt;void&gt;): void

G
ge-yafang 已提交
1607
设置窗口内导航栏、状态栏的属性,使用callback异步回调。
C
chyyy0213 已提交
1608

G
ge-yafang 已提交
1609
**系统能力:** SystemCapability.WindowManager.WindowManager.Core
Z
zengyawen 已提交
1610

L
leafly2021 已提交
1611
**参数:**
C
chyyy0213 已提交
1612

G
ge-yafang 已提交
1613 1614 1615 1616
| 参数名              | 类型                                        | 必填 | 说明                   |
| ------------------- | ------------------------------------------- | ---- | ---------------------- |
| SystemBarProperties | [SystemBarProperties](#systembarproperties) | 是   | 导航栏、状态栏的属性。 |
| callback            | AsyncCallback&lt;void&gt;                   | 是   | 回调函数。             |
Z
zengyawen 已提交
1617

L
leafly2021 已提交
1618
**示例:**
C
chyyy0213 已提交
1619

G
ge-yafang 已提交
1620 1621 1622 1623 1624 1625 1626 1627 1628 1629 1630 1631 1632 1633 1634 1635 1636 1637 1638
```js
var SystemBarProperties={
    statusBarColor: '#ff00ff',
    navigationBarColor: '#00ff00',
    //以下两个属性从API Version7开始支持
    isStatusBarLightIcon: true,
    isNavigationBarLightIcon:false,
    //以下两个属性从API Version8开始支持
    statusBarContentColor:'#ffffff',
    navigationBarContentColor:'#00ffff'
};
windowClass.setSystemBarProperties(SystemBarProperties, (err, data) => {
    if (err.code) {
        console.error('Failed to set the system bar properties. Cause: ' + JSON.stringify(err));
        return;
    }
    console.info('Succeeded in setting the system bar properties. Data: ' + JSON.stringify(data));
});
```
C
chyyy0213 已提交
1639 1640 1641 1642 1643

### setSystemBarProperties

setSystemBarProperties(systemBarProperties: SystemBarProperties): Promise&lt;void&gt;

G
ge-yafang 已提交
1644
设置窗口内导航栏、状态栏的属性,使用Promise异步回调。
C
chyyy0213 已提交
1645

G
ge-yafang 已提交
1646
**系统能力:** SystemCapability.WindowManager.WindowManager.Core
C
chyyy0213 已提交
1647

L
leafly2021 已提交
1648
**参数:**
C
chyyy0213 已提交
1649

G
ge-yafang 已提交
1650 1651 1652
| 参数名              | 类型                                        | 必填 | 说明                   |
| ------------------- | ------------------------------------------- | ---- | ---------------------- |
| SystemBarProperties | [SystemBarProperties](#systembarproperties) | 是   | 导航栏、状态栏的属性。 |
C
chyyy0213 已提交
1653

L
leafly2021 已提交
1654
**返回值:**
C
chyyy0213 已提交
1655

G
ge-yafang 已提交
1656 1657 1658 1659
| 类型                | 说明                      |
| ------------------- | ------------------------- |
| Promise&lt;void&gt; | 无返回结果的Promise对象。 |

L
leafly2021 已提交
1660
**示例:**
G
ge-yafang 已提交
1661 1662 1663 1664 1665 1666 1667 1668 1669 1670 1671 1672 1673 1674 1675 1676 1677 1678 1679

```js
var SystemBarProperties={
    statusBarColor: '#ff00ff',
    navigationBarColor: '#00ff00',
    //以下两个属性从API Version7开始支持
    isStatusBarLightIcon: true,
    isNavigationBarLightIcon:false,
    //以下两个属性从API Version8开始支持
    statusBarContentColor:'#ffffff',
    navigationBarContentColor:'#00ffff'
};
let promise = windowClass.setSystemBarProperties(SystemBarProperties);
promise.then((data)=> {
    console.info('Succeeded in setting the system bar properties. Data: ' + JSON.stringify(data));
}).catch((err)=>{
    console.error('Failed to set the system bar properties. Cause: ' + JSON.stringify(err));
});
```
Z
zengyawen 已提交
1680

X
xpeng 已提交
1681
### setPreferredOrientation<sup>9+</sup>
X
xpeng 已提交
1682 1683 1684

setPreferredOrientation(orientation: Orientation, callback: AsyncCallback&lt;void&gt;): void

X
xpeng 已提交
1685
设置窗口的显示方向属性,使用callback异步回调。
X
xpeng 已提交
1686 1687 1688

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

L
leafly2021 已提交
1689
**参数:**
X
xpeng 已提交
1690 1691 1692

| 参数名              | 类型                                        | 必填 | 说明                   |
| ------------------- | ------------------------------------------- | ---- | ---------------------- |
X
xpeng 已提交
1693
| Orientation         | [Orientation](#orientation9)                | 是   | 窗口显示方向的属性。         |
X
xpeng 已提交
1694 1695
| callback            | AsyncCallback&lt;void&gt;                   | 是   | 回调函数。             |

L
leafly2021 已提交
1696
**示例:**
X
xpeng 已提交
1697 1698

```js
X
xpeng 已提交
1699 1700
var orientation = window.Orientation.AUTO_ROTATION;
windowClass.setPreferredOrientation(orientation, (err, data) => {
X
xpeng 已提交
1701 1702 1703 1704 1705 1706 1707 1708
    if (err.code) {
        console.error('Failed to set window orientation. Cause: ' + JSON.stringify(err));
        return;
    }
    console.info('Succeeded in setting window orientation. Data: ' + JSON.stringify(data));
});
```

X
xpeng 已提交
1709
### setPreferredOrientation<sup>9+</sup>
X
xpeng 已提交
1710 1711 1712

setPreferredOrientation(orientation: Orientation): Promise&lt;void&gt;

X
xpeng 已提交
1713 1714
设置窗口的显示方向属性,使用Promise异步回调。

X
xpeng 已提交
1715 1716
**系统能力:** SystemCapability.WindowManager.WindowManager.Core

L
leafly2021 已提交
1717
**参数:**
X
xpeng 已提交
1718 1719 1720

| 参数名              | 类型                                        | 必填 | 说明                   |
| ------------------- | ------------------------------------------- | ---- | ---------------------- |
X
xpeng 已提交
1721
| Orientation         | [Orientation](#orientation9)                | 是   | 窗口显示方向的属性。       |
X
xpeng 已提交
1722

L
leafly2021 已提交
1723
**返回值:**
X
xpeng 已提交
1724 1725 1726 1727 1728

| 类型                | 说明                      |
| ------------------- | ------------------------- |
| Promise&lt;void&gt; | 无返回结果的Promise对象。 |

L
leafly2021 已提交
1729
**示例:**
X
xpeng 已提交
1730 1731

```js
X
xpeng 已提交
1732 1733
var orientation = window.Orientation.AUTO_ROTATION;
let promise = windowClass.setPreferredOrientation(orientation);
X
xpeng 已提交
1734 1735 1736 1737 1738 1739 1740
promise.then((data)=> {
    console.info('Succeeded in setting the window orientation. Data: ' + JSON.stringify(data));
}).catch((err)=>{
    console.error('Failed to set the window orientation. Cause: ' + JSON.stringify(err));
});
```

C
chyyy0213 已提交
1741
### loadContent<sup>7+</sup>
Z
zengyawen 已提交
1742

C
chyyy0213 已提交
1743
loadContent(path: string, callback: AsyncCallback&lt;void&gt;): void
Z
zengyawen 已提交
1744

G
ge-yafang 已提交
1745
为当前窗口加载具体页面内容,使用callback异步回调。
Z
zengyawen 已提交
1746

G
ge-yafang 已提交
1747
**系统能力:** SystemCapability.WindowManager.WindowManager.Core
Z
zengyawen 已提交
1748

L
leafly2021 已提交
1749
**参数:**
Z
zengyawen 已提交
1750

G
ge-yafang 已提交
1751 1752 1753 1754
| 参数名   | 类型                      | 必填 | 说明                 |
| -------- | ------------------------- | ---- | -------------------- |
| path     | string                    | 是   | 设置加载页面的路径。 |
| callback | AsyncCallback&lt;void&gt; | 是   | 回调函数。           |
G
ge-yafang 已提交
1755

L
leafly2021 已提交
1756
**示例:**
Z
zengyawen 已提交
1757

G
ge-yafang 已提交
1758 1759 1760 1761 1762 1763 1764 1765 1766
```js
windowClass.loadContent("pages/page2/page2", (err, data) => {
   if (err.code) {
         console.error('Failed to load the content. Cause:' + JSON.stringify(err));
         return;
   }
  console.info('Succeeded in loading the content. Data: ' + JSON.stringify(data));
});
```
C
chyyy0213 已提交
1767

C
chyyy0213 已提交
1768
### loadContent<sup>7+</sup>
C
chyyy0213 已提交
1769

C
chyyy0213 已提交
1770
loadContent(path: string): Promise&lt;void&gt;
C
chyyy0213 已提交
1771

G
ge-yafang 已提交
1772
为当前窗口加载具体页面内容,使用Promise异步回调。
C
chyyy0213 已提交
1773

G
ge-yafang 已提交
1774
**系统能力:** SystemCapability.WindowManager.WindowManager.Core
C
chyyy0213 已提交
1775

L
leafly2021 已提交
1776
**参数:**
C
chyyy0213 已提交
1777

G
ge-yafang 已提交
1778 1779 1780
| 参数名 | 类型   | 必填 | 说明                 |
| ------ | ------ | ---- | -------------------- |
| path   | string | 是   | 设置加载页面的路径。 |
G
ge-yafang 已提交
1781

L
leafly2021 已提交
1782
**返回值:**
C
chyyy0213 已提交
1783

G
ge-yafang 已提交
1784 1785 1786
| 类型                | 说明                      |
| ------------------- | ------------------------- |
| Promise&lt;void&gt; | 无返回结果的Promise对象。 |
C
chyyy0213 已提交
1787

L
leafly2021 已提交
1788
**示例:**
C
chyyy0213 已提交
1789

G
ge-yafang 已提交
1790 1791 1792 1793 1794 1795 1796 1797 1798 1799 1800 1801 1802 1803
```js
let promise = windowClass.loadContent("pages/page2/page2");
promise.then((data)=> {
    console.info('Succeeded in loading the content. Data: ' + JSON.stringify(data));
}).catch((err)=>{
    console.error('Failed to load the content. Cause: ' + JSON.stringify(err));
});
```
### loadContent<sup>9+</sup>

loadContent(path: string, storage: LocalStorage, callback: AsyncCallback&lt;void&gt;): void

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

1804
**模型约束:** 此接口仅可在Stage模型下使用。
G
ge-yafang 已提交
1805 1806 1807

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

L
leafly2021 已提交
1808
**参数:**
G
ge-yafang 已提交
1809

G
ge-yafang 已提交
1810 1811 1812 1813 1814
| 参数名   | 类型                                            | 必填 | 说明                                                         |
| -------- | ----------------------------------------------- | ---- | ------------------------------------------------------------ |
| path     | string                                          | 是   | 设置加载页面的路径。                                         |
| storage  | [LocalStorage](../../ui/ui-ts-local-storage.md) | 是   | 存储单元,为应用程序范围内的可变状态属性和非可变状态属性提供存储。 |
| callback | AsyncCallback&lt;void&gt;                       | 是   | 回调函数。                                                   |
G
ge-yafang 已提交
1815 1816 1817 1818 1819

**示例:**

```ts
class myAbility extends Ability {
L
leafly2021 已提交
1820
    storage : LocalStorage
G
ge-yafang 已提交
1821 1822 1823 1824 1825 1826 1827 1828 1829 1830 1831 1832 1833 1834 1835 1836 1837 1838 1839 1840 1841
    onWindowStageCreate(windowStage) {
        this.storage = new LocalStorage();
        this.storage.setOrCreate("storageSimpleProp",121);
        console.log('onWindowStageCreate');
        windowStage.loadContent("pages/page2",this.storage,(err, data) => {
            if (err.code) {
                console.error('Failed to load the content. Cause:' + JSON.stringify(err));
                return;
            }
            console.info('Succeeded in loading the content. Data: ' + JSON.stringify(data));
        });
    }
}
```

### loadContent<sup>9+</sup>

loadContent(path: string, storage: LocalStorage): Promise&lt;void&gt;

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

1842
**模型约束:** 此接口仅可在Stage模型下使用。
G
ge-yafang 已提交
1843 1844 1845

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

L
leafly2021 已提交
1846
**参数:**
G
ge-yafang 已提交
1847

G
ge-yafang 已提交
1848 1849 1850 1851
| 参数名  | 类型                                            | 必填 | 说明                                                         |
| ------- | ----------------------------------------------- | ---- | ------------------------------------------------------------ |
| path    | string                                          | 是   | 设置加载页面的路径。                                         |
| storage | [LocalStorage](../../ui/ui-ts-local-storage.md) | 是   | 存储单元,为应用程序范围内的可变状态属性和非可变状态属性提供存储。 |
G
ge-yafang 已提交
1852 1853 1854 1855 1856 1857

**返回值:**

| 类型                | 说明                      |
| ------------------- | ------------------------- |
| Promise&lt;void&gt; | 无返回结果的Promise对象。 |
Z
zengyawen 已提交
1858

G
ge-yafang 已提交
1859 1860 1861 1862
**示例:**

```ts
class myAbility extends Ability {
L
leafly2021 已提交
1863
    storage : LocalStorage
G
ge-yafang 已提交
1864 1865 1866 1867 1868 1869 1870 1871 1872 1873 1874 1875 1876 1877 1878
    onWindowStageCreate(windowStage) {
        this.storage = new LocalStorage();
        this.storage.setOrCreate("storageSimpleProp",121);
        console.log('onWindowStageCreate');
        var windowClass = null;
        let promise = windowStage.loadContent("pages/page2",this.storage);
        promise.then((data)=> {
            windowClass = data;
            console.info('Succeeded in loading the content. Data: ' + JSON.stringify(data));
        }).catch((err)=>{
            console.error('Failed to load the content. Cause:' + JSON.stringify(err));
        })
    }
}
```
C
chyyy0213 已提交
1879
### isShowing<sup>7+</sup>
Z
zengyawen 已提交
1880

C
chyyy0213 已提交
1881 1882
isShowing(callback: AsyncCallback&lt;boolean&gt;): void

G
ge-yafang 已提交
1883
判断当前窗口是否已显示,使用callback异步回调。
Z
zengyawen 已提交
1884

G
ge-yafang 已提交
1885
**系统能力:** SystemCapability.WindowManager.WindowManager.Core
Z
zengyawen 已提交
1886

L
leafly2021 已提交
1887
**参数:**
C
chyyy0213 已提交
1888

G
ge-yafang 已提交
1889 1890 1891
| 参数名   | 类型                         | 必填 | 说明                                                         |
| -------- | ---------------------------- | ---- | ------------------------------------------------------------ |
| callback | AsyncCallback&lt;boolean&gt; | 是   | 回调函数。返回true表示当前窗口已显示,返回false则表示当前窗口未显示。 |
Z
zengyawen 已提交
1892

L
leafly2021 已提交
1893
**示例:**
C
chyyy0213 已提交
1894

G
ge-yafang 已提交
1895 1896 1897 1898 1899 1900 1901 1902 1903
```js
windowClass.isShowing((err, data) => {
    if (err.code) {
        console.error('Failed to check whether the window is showing. Cause:' + JSON.stringify(err));
        return;
    }
    console.info('Succeeded in checking whether the window is showing. Data: ' + JSON.stringify(data));
});
```
C
chyyy0213 已提交
1904 1905 1906 1907 1908

### isShowing<sup>7+</sup>

isShowing(): Promise&lt;boolean&gt;

G
ge-yafang 已提交
1909
判断当前窗口是否已显示,使用Promise异步回调。
C
chyyy0213 已提交
1910

G
ge-yafang 已提交
1911
**系统能力:** SystemCapability.WindowManager.WindowManager.Core
C
chyyy0213 已提交
1912

L
leafly2021 已提交
1913
**返回值:**
C
chyyy0213 已提交
1914

G
ge-yafang 已提交
1915 1916 1917
| 类型                   | 说明                                                         |
| ---------------------- | ------------------------------------------------------------ |
| Promise&lt;boolean&gt; | Promise对象。返回true表示当前窗口已显示,返回false则表示当前窗口未显示。 |
C
chyyy0213 已提交
1918

L
leafly2021 已提交
1919
**示例:**
C
chyyy0213 已提交
1920

G
ge-yafang 已提交
1921 1922 1923 1924 1925 1926 1927 1928
```js
let promise = windowClass.isShowing();
promise.then((data)=> {
    console.info('Succeeded in checking whether the window is showing. Data: ' + JSON.stringify(data));
}).catch((err)=>{
    console.error('Failed to check whether the window is showing. Cause: ' + JSON.stringify(err));
});
```
Z
zengyawen 已提交
1929

C
chyyy0213 已提交
1930
### on('windowSizeChange')<sup>7+</sup>
Z
zengyawen 已提交
1931

C
chyyy0213 已提交
1932
on(type:  'windowSizeChange', callback: Callback&lt;Size&gt;): void
Z
zengyawen 已提交
1933

G
ge-yafang 已提交
1934
开启窗口尺寸变化的监听。
C
chyyy0213 已提交
1935

G
ge-yafang 已提交
1936
**系统能力:** SystemCapability.WindowManager.WindowManager.Core
Z
zengyawen 已提交
1937

L
leafly2021 已提交
1938
**参数:**
C
chyyy0213 已提交
1939

G
ge-yafang 已提交
1940 1941 1942 1943
| 参数名   | 类型                           | 必填 | 说明                                                     |
| -------- | ------------------------------ | ---- | -------------------------------------------------------- |
| type     | string                         | 是   | 监听事件,固定为'windowSizeChange',即窗口尺寸变化事件。 |
| callback | Callback&lt;[Size](#size7)&gt; | 是   | 回调函数。返回当前的窗口尺寸。                           |
Z
zengyawen 已提交
1944

L
leafly2021 已提交
1945
**示例:**
C
chyyy0213 已提交
1946

G
ge-yafang 已提交
1947 1948 1949 1950 1951
```js
windowClass.on('windowSizeChange', (data) => {
    console.info('Succeeded in enabling the listener for window size changes. Data: ' + JSON.stringify(data));
});
```
Z
zengyawen 已提交
1952

C
chyyy0213 已提交
1953
### off('windowSizeChange')<sup>7+</sup>
Z
zengyawen 已提交
1954

C
chyyy0213 已提交
1955
off(type: 'windowSizeChange', callback?: Callback&lt;Size &gt;): void
Z
zengyawen 已提交
1956

G
ge-yafang 已提交
1957
关闭窗口尺寸变化的监听。
C
chyyy0213 已提交
1958

G
ge-yafang 已提交
1959
**系统能力:** SystemCapability.WindowManager.WindowManager.Core
Z
zengyawen 已提交
1960

L
leafly2021 已提交
1961
**参数:**
C
chyyy0213 已提交
1962

G
ge-yafang 已提交
1963 1964 1965
| 参数名   | 类型                          | 必填 | 说明                                                     |
| -------- | ----------------------------- | ---- | -------------------------------------------------------- |
| type     | string                        | 是   | 监听事件,固定为'windowSizeChange',即窗口尺寸变化事件。 |
G
ge-yafang 已提交
1966
| callback | Callback&lt;[Size](#size)&gt; | 否   | 回调函数。返回当前的窗口尺寸。                           |
Z
zengyawen 已提交
1967

L
leafly2021 已提交
1968
**示例:**
C
chyyy0213 已提交
1969

G
ge-yafang 已提交
1970 1971 1972
```js
windowClass.off('windowSizeChange');
```
Z
zengyawen 已提交
1973

1974
### on('systemAvoidAreaChange')<sup>(deprecated)</sup>
C
chyyy0213 已提交
1975

1976
on(type: 'systemAvoidAreaChange', callback: Callback&lt;[AvoidArea](#avoidarea7)&gt;): void
C
chyyy0213 已提交
1977

1978 1979 1980 1981
开启系统规避区变化的监听。
> **说明:** 从API version 9开始废弃,推荐使用[on('avoidAreaChange')](#onavoidareachange9)。
>
> 从 API version 7开始支持。
C
chyyy0213 已提交
1982

G
ge-yafang 已提交
1983
**系统能力:** SystemCapability.WindowManager.WindowManager.Core
C
chyyy0213 已提交
1984

L
leafly2021 已提交
1985
**参数:**
C
chyyy0213 已提交
1986

1987 1988 1989 1990
| 参数名   | 类型                                       | 必填 | 说明                                                    |
| -------- |------------------------------------------| ---- | ------------------------------------------------------- |
| type     | string                                   | 是   | 监听事件,固定为'systemAvoidAreaChange',即系统规避区变化事件。 |
| callback | Callback&lt;[AvoidArea](#avoidarea7)&gt; | 是   | 回调函数。返回当前规避区。                             |
C
chyyy0213 已提交
1991

L
leafly2021 已提交
1992
**示例:**
C
chyyy0213 已提交
1993

G
ge-yafang 已提交
1994 1995 1996 1997 1998
```js
windowClass.on('systemAvoidAreaChange', (data) => {
    console.info('Succeeded in enabling the listener for system avoid area changes. Data: ' + JSON.stringify(data));
});
```
C
chyyy0213 已提交
1999

2000
### off('systemAvoidAreaChange')<sup>(deprecated)</sup>
C
chyyy0213 已提交
2001

2002
off(type: 'systemAvoidAreaChange', callback?: Callback&lt;[AvoidArea](#avoidarea7)&gt;): void
C
chyyy0213 已提交
2003

2004 2005 2006 2007
关闭系统规避区变化的监听。
> **说明:** 从API version 9开始废弃,推荐使用[off('avoidAreaChange')](#offavoidareachange9)。
>
> 从 API version 7开始支持。
C
chyyy0213 已提交
2008

G
ge-yafang 已提交
2009
**系统能力:** SystemCapability.WindowManager.WindowManager.Core
C
chyyy0213 已提交
2010

L
leafly2021 已提交
2011
**参数:**
C
chyyy0213 已提交
2012

2013 2014 2015 2016
| 参数名   | 类型                                       | 必填 | 说明                                                    |
| -------- |------------------------------------------| ---- | ------------------------------------------------------- |
| type     | string                                   | 是   | 监听事件,固定为'systemAvoidAreaChange',即系统规避区变化事件。 |
| callback | Callback&lt;[AvoidArea](#avoidarea7)&gt; | 否   | 回调函数。返回当前规避区。                            |
C
chyyy0213 已提交
2017

L
leafly2021 已提交
2018
**示例:**
C
chyyy0213 已提交
2019

G
ge-yafang 已提交
2020 2021 2022
```js
windowClass.off('systemAvoidAreaChange');
```
C
chyyy0213 已提交
2023

2024 2025 2026 2027 2028 2029 2030 2031 2032 2033 2034 2035 2036 2037 2038 2039 2040 2041 2042

### on('avoidAreaChange')<sup>9+</sup>

on(type: 'avoidAreaChange', callback: Callback&lt;{[AvoidAreaType](#avoidareatype7), [AvoidArea](#avoidarea7)}&gt;): void

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

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

**参数:**

| 参数名   | 类型                                                               | 必填 | 说明                                   |
| -------- |------------------------------------------------------------------| ---- |--------------------------------------|
| type     | string                                                           | 是   | 监听事件,固定为'avoidAreaChange',即系统规避区变化事件。 |
| callback | Callback&lt;{[AvoidAreaType](#avoidareatype7), [AvoidArea](#avoidarea7)}&gt; | 是   | 回调函数。返回当前规避区以及规避区类型。|

**示例:**

```js
2043 2044
windowClass.on('avoidAreaChange', (data) => {
    console.info('Succeeded in enabling the listener for system avoid area changes. type:'  + JSON.stringify(data.type) + ', area: ' + JSON.stringify(data.area));
2045 2046 2047 2048 2049 2050 2051 2052 2053 2054 2055 2056 2057 2058 2059 2060 2061 2062 2063 2064 2065 2066 2067 2068
});
```

### off('avoidAreaChange')<sup>9+</sup>

off(type: 'avoidAreaChange', callback: Callback&lt;{[AvoidAreaType](#avoidareatype7), [AvoidArea](#avoidarea7)}&gt;): void

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

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

**参数:**

| 参数名   | 类型                                                                          | 必填  | 说明                                 |
| -------- |-----------------------------------------------------------------------------|-----|------------------------------------|
| type     | string                                                                      | 是   | 监听事件,固定为'avoidAreaChange',即系统规避区变化事件。 |
| callback | Callback&lt;{[AvoidAreaType](#avoidareatype7), [AvoidArea](#avoidarea7)}&gt; | 否   | 回调函数。返回当前规避区以及规避区类型。|

**示例:**

```js
windowClass.off('avoidAreaChange');
```

C
chyyy0213 已提交
2069 2070 2071 2072 2073 2074
### on('keyboardHeightChange')<sup>7+</sup>

on(type: 'keyboardHeightChange', callback: Callback&lt;number&gt;): void

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

G
ge-yafang 已提交
2075
**系统能力:** SystemCapability.WindowManager.WindowManager.Core
C
chyyy0213 已提交
2076

L
leafly2021 已提交
2077
**参数:**
C
chyyy0213 已提交
2078

G
ge-yafang 已提交
2079 2080 2081 2082
| 参数名   | 类型                | 必填 | 说明                                                         |
| -------- | ------------------- | ---- | ------------------------------------------------------------ |
| type     | string              | 是   | 监听事件,固定为'keyboardHeightChange',即键盘高度变化事件。 |
| callback | Callback<number&gt; | 是   | 回调函数。返回当前的键盘高度。                               |
C
chyyy0213 已提交
2083

L
leafly2021 已提交
2084
**示例:**
C
chyyy0213 已提交
2085

G
ge-yafang 已提交
2086 2087 2088 2089 2090
```js
windowClass.on('keyboardHeightChange', (data) => {
    console.info('Succeeded in enabling the listener for keyboard height changes. Data: ' + JSON.stringify(data));
});
```
C
chyyy0213 已提交
2091 2092 2093 2094 2095 2096 2097

### off('keyboardHeightChange')<sup>7+</sup>

off(type: 'keyboardHeightChange', callback?: Callback&lt;number&gt;): void

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

G
ge-yafang 已提交
2098
**系统能力:** SystemCapability.WindowManager.WindowManager.Core
C
chyyy0213 已提交
2099

L
leafly2021 已提交
2100
**参数:**
C
chyyy0213 已提交
2101

G
ge-yafang 已提交
2102 2103 2104
| 参数名   | 类型                   | 必填 | 说明                                                         |
| -------- | ---------------------- | ---- | ------------------------------------------------------------ |
| type     | string                 | 是   | 监听事件,固定为'keyboardHeightChange',即键盘高度变化事件。 |
G
ge-yafang 已提交
2105
| callback | Callback&lt;number&gt; | 否   | 回调函数。返回当前的键盘高度。                               |
C
chyyy0213 已提交
2106

L
leafly2021 已提交
2107
**示例:**
C
chyyy0213 已提交
2108

G
ge-yafang 已提交
2109 2110 2111
```js
windowClass.off('keyboardHeightChange');
```
C
chyyy0213 已提交
2112

D
dubj 已提交
2113 2114 2115 2116 2117
### on('touchOutside')<sup>9+</sup>

on(type: 'touchOutside', callback: Callback&lt;void&gt;): void

开启本窗口区域范围外的点击事件的监听。
L
leafly2021 已提交
2118

2119
**系统接口:** 此接口为系统接口。
D
dubj 已提交
2120 2121 2122 2123 2124 2125 2126 2127 2128 2129 2130 2131 2132 2133 2134 2135 2136 2137 2138 2139 2140 2141 2142

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

**参数:**

| 参数名   | 类型                | 必填 | 说明                                                         |
| -------- | ------------------- | ---- | ------------------------------------------------------------ |
| type     | string              | 是   | 监听事件,固定为'touchOutside',即本窗口范围外的点击事件。 |
| callback | Callback<void&gt; | 是   | 回调函数。当点击事件发生在本窗口范围之外的回调。                               |

**示例:**

```js
windowClass.on('touchOutside', () => {
    console.info('touch outside');
});
```

### off('touchOutside')<sup>9+</sup>

off(type: 'touchOutside', callback?: Callback&lt;void&gt;): void

关闭本窗口区域范围外的点击事件的监听。
L
leafly2021 已提交
2143

2144
**系统接口:** 此接口为系统接口。
D
dubj 已提交
2145 2146 2147 2148 2149 2150 2151 2152 2153 2154 2155 2156 2157 2158 2159 2160

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

**参数:**

| 参数名   | 类型                   | 必填 | 说明                                                         |
| -------- | ---------------------- | ---- | ------------------------------------------------------------ |
| type     | string                 | 是   | 监听事件,固定为'touchOutside',即本窗口范围外的点击事件。 |
| callback | Callback&lt;number&gt; | 否   | 回调函数。当点击事件发生在本窗口范围之外的回调。                               |

**示例:**

```js
windowClass.off('touchOutside');
```

2161 2162 2163 2164 2165 2166 2167 2168 2169 2170 2171 2172 2173 2174 2175 2176 2177 2178 2179 2180 2181 2182 2183 2184 2185 2186 2187 2188 2189 2190 2191 2192 2193 2194 2195 2196 2197 2198 2199 2200 2201 2202 2203 2204 2205 2206 2207 2208 2209 2210 2211
### on('screenshot')<sup>9+</sup>

on(type: 'screenshot', callback: Callback&lt;void&gt;): void

开启截屏事件的监听。

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

**参数:**

| 参数名   | 类型                | 必填 | 说明                                                         |
| -------- | ------------------- | ---- | ------------------------------------------------------------ |
| type     | string              | 是   | 监听事件,固定为'screenshot',即截屏事件。 |
| callback | Callback&lt;void&gt; | 是   | 回调函数。发生截屏事件时的回调。                               |

**示例:**

```js
windowClass.on('screenshot', () => {
    console.info('screenshot happened');
});
```

### off('screenshot')<sup>9+</sup>

off(type: 'screenshot', callback?: Callback&lt;void&gt;): void

关闭截屏事件的监听。

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

**参数:**

| 参数名   | 类型                   | 必填 | 说明                                                         |
| -------- | ---------------------- | ---- | ------------------------------------------------------------ |
| type     | string                 | 是   | 监听事件,固定为'screenshot',即截屏事件。 |
| callback | Callback&lt;void&gt; | 否   | 回调函数。发生截屏事件时的回调。 |

**示例:**

```js
var callback = ()=>{
    console.info('screenshot happened');
}
windowClass.on('screenshot', callback)
windowClass.off('screenshot', callback)

// 如果通过on开启多个callback进行监听,同时关闭所有监听:
windowClass.off('screenshot');
```

2212 2213 2214 2215 2216 2217 2218 2219 2220 2221 2222 2223 2224 2225 2226 2227 2228 2229 2230 2231 2232 2233 2234 2235 2236 2237 2238 2239 2240 2241 2242 2243 2244 2245 2246 2247 2248 2249 2250 2251 2252 2253 2254 2255 2256 2257 2258 2259 2260 2261
### on('dialogTargetTouch')<sup>9+</sup>

on(type: 'dialogTargetTouch', callback: Callback&lt;void&gt;): void

开启模态窗口目标窗口的点击事件的监听。

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

**参数:**

| 参数名   | 类型                 | 必填 | 说明                                                          |
| -------- | ------------------- | ---- | ------------------------------------------------------------ |
| type     | string              | 是   | 监听事件,固定为'dialogTargetTouch',即模态窗口目标窗口的点击事件。 |
| callback | Callback&lt;void&gt;| 是   | 回调函数。当点击事件发生在模态窗口目标窗口的回调。 |

**示例:**

```js
windowClass.on('dialogTargetTouch', () => {
    console.info('touch dialog target');
});
```

### off('dialogTargetTouch')<sup>9+</sup>

off(type: 'dialogTargetTouch', callback?: Callback&lt;void&gt;): void

关闭模态窗口目标窗口的点击事件的监听。

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

**参数:**

| 参数名   | 类型                    | 必填 | 说明                                                          |
| -------- | ---------------------- | ---- | ------------------------------------------------------------ |
| type     | string                 | 是   | 监听事件,固定为'dialogTargetTouch',即模态窗口目标窗口的点击事件。 |
| callback | Callback&lt;void&gt;      | 否   | 回调函数。当点击事件发生在模态窗口目标窗口的回调。 |

**示例:**

```js
windowClass.off('dialogTargetTouch');
```

### bindDialogTarget<sup>9+</sup>

bindDialogTarget(token: rpc.RemoteObject, deathCallback: Callback&lt;void&gt;, callback: AsyncCallback&lt;void&gt;): void

绑定模态窗口与目标窗口并添加模态窗口销毁监听,使用callback异步回调。

2262
**系统接口:** 此接口为系统接口。
2263 2264 2265

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

L
leafly2021 已提交
2266
**参数:**
2267 2268 2269 2270 2271 2272 2273

| 参数名       | 类型                      | 必填 | 说明                  |
| ----------- | ------------------------- | ---- | -------------------- |
| token       | [rpc.RemoteObject](js-apis-rpc.md#remoteobject) | 是   | 目标窗口token值。 |
| deathCallback | Callback&lt;void&gt;        | 是   | 模态窗口销毁监听。 |
| callback    | AsyncCallback&lt;void&gt; | 是   | 回调函数。 |

L
leafly2021 已提交
2274
**示例:**
2275 2276

```js
Z
zhengjiangliang 已提交
2277 2278 2279 2280 2281
class MyDeathRecipient {
    onRemoteDied() {
        console.log("server died");
    }
}
2282 2283 2284 2285 2286 2287 2288 2289 2290 2291 2292 2293 2294 2295 2296 2297 2298 2299 2300 2301 2302 2303 2304 2305 2306 2307 2308 2309 2310 2311 2312 2313
class TestRemoteObject extends rpc.RemoteObject {
    constructor(descriptor) {
        super(descriptor);
    }
    addDeathRecipient(recipient: MyDeathRecipient, flags: number): boolean {
        return true;
    }
    removeDeathRecipient(recipient: MyDeathRecipient, flags: number): boolean {
        return true;
    }
    isObjectDead(): boolean {
        return false;
    }
}
let token = new TestRemoteObject("testObject");
windowClass.bindDialogTarget(token, () => {
    console.info('Dialog Window Need Destroy.');
}, (err, data) => {
    if (err.code) {
        console.error('Failed to bind dialog target. Cause:' + JSON.stringify(err));
        return;
    }
    console.info('Succeeded in binding dialog target. Data:' + JSON.stringify(data));
});
```

### bindDialogTarget<sup>9+</sup>

bindDialogTarget(token: rpc.RemoteObject, deathCallback: Callback&lt;void&gt;): Promise&lt;void&gt;

绑定模态窗口与目标窗口并添加模态窗口销毁监听,使用Promise异步回调。

2314
**系统接口:** 此接口为系统接口。
2315 2316 2317

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

L
leafly2021 已提交
2318
**参数:**
2319 2320 2321 2322 2323 2324

| 参数名       | 类型                      | 必填 | 说明                  |
| ----------- | ------------------------- | ---- | -------------------- |
| token       | [rpc.RemoteObject](js-apis-rpc.md#remoteobject) | 是   | 目标窗口token值。 |
| deathCallback | Callback&lt;void&gt;        | 是   | 模态窗口销毁监听。 |

L
leafly2021 已提交
2325
**返回值:**
2326 2327 2328 2329 2330

| 类型                | 说明                      |
| ------------------- | ------------------------- |
| Promise&lt;void&gt; | 无返回结果的Promise对象。 |

L
leafly2021 已提交
2331
**示例:**
2332 2333

```js
Z
zhengjiangliang 已提交
2334 2335 2336 2337 2338
class MyDeathRecipient {
    onRemoteDied() {
        console.log("server died");
    }
}
2339 2340 2341 2342 2343 2344 2345 2346 2347 2348 2349 2350 2351 2352 2353 2354 2355 2356 2357 2358 2359 2360 2361 2362 2363
class TestRemoteObject extends rpc.RemoteObject {
    constructor(descriptor) {
        super(descriptor);
    }
    addDeathRecipient(recipient: MyDeathRecipient, flags: number): boolean {
        return true;
    }
    removeDeathRecipient(recipient: MyDeathRecipient, flags: number): boolean {
        return true;
    }
    isObjectDead(): boolean {
        return false;
    }
}
let token = new TestRemoteObject("testObject");
let promise = windowClass.bindDialogTarget(token, () => {
    console.info('Dialog Window Need Destroy.');
});
promise.then((data)=> {
    console.info('Succeeded in binding dialog target. Data:' + JSON.stringify(data));
}).catch((err)=>{
        console.error('Failed to bind dialog target. Cause:' + JSON.stringify(err));
});
```

C
chyyy0213 已提交
2364
### isSupportWideGamut<sup>8+</sup>
Z
zengyawen 已提交
2365

C
chyyy0213 已提交
2366
isSupportWideGamut(callback: AsyncCallback&lt;boolean&gt;): void
C
chyyy0213 已提交
2367

G
ge-yafang 已提交
2368
判断当前窗口是否支持广色域模式,使用callback异步回调。
Z
zengyawen 已提交
2369

G
ge-yafang 已提交
2370
**系统能力:** SystemCapability.WindowManager.WindowManager.Core
Z
zengyawen 已提交
2371

L
leafly2021 已提交
2372
**参数:**
C
chyyy0213 已提交
2373

G
ge-yafang 已提交
2374 2375 2376
| 参数名   | 类型                         | 必填 | 说明                                                         |
| -------- | ---------------------------- | ---- | ------------------------------------------------------------ |
| callback | AsyncCallback&lt;boolean&gt; | 是   | 回调函数。返回true表示当前窗口支持广色域模式,返回false则表示当前窗口不支持广色域模式。 |
Z
zengyawen 已提交
2377

L
leafly2021 已提交
2378
**示例:**
C
chyyy0213 已提交
2379

G
ge-yafang 已提交
2380 2381 2382 2383 2384 2385 2386 2387 2388
```js
windowClass.isSupportWideGamut((err, data) => {
    if (err.code) {
        console.error('Failed to check whether the window support WideGamut. Cause:' + JSON.stringify(err));
        return;
    }
    console.info('Succeeded in checking whether the window support WideGamut Data: ' + JSON.stringify(data));
})
```
Z
zengyawen 已提交
2389

C
chyyy0213 已提交
2390 2391 2392 2393
### isSupportWideGamut<sup>8+</sup>

isSupportWideGamut(): Promise&lt;boolean&gt;

G
ge-yafang 已提交
2394
判断当前窗口是否支持广色域模式,使用Promise异步回调。
C
chyyy0213 已提交
2395

G
ge-yafang 已提交
2396
**系统能力:** SystemCapability.WindowManager.WindowManager.Core
C
chyyy0213 已提交
2397

L
leafly2021 已提交
2398
**返回值:**
C
chyyy0213 已提交
2399

G
ge-yafang 已提交
2400 2401
| 类型                   | 说明                                                         |
| ---------------------- | ------------------------------------------------------------ |
G
ge-yafang 已提交
2402
| Promise&lt;boolean&gt; | Promise对象。返回true表示当前窗口支持广色域模式,返回false则表示当前窗口不支持广色域模式。 |
C
chyyy0213 已提交
2403

L
leafly2021 已提交
2404
**示例:**
C
chyyy0213 已提交
2405

G
ge-yafang 已提交
2406 2407 2408 2409 2410 2411 2412 2413
```js
let promise = windowClass.isSupportWideGamut();
promise.then((data)=> {
    console.info('Succeeded in checking whether the window support WideGamut. Data: ' + JSON.stringify(data));
}).catch((err)=>{
    console.error('Failed to check whether the window support WideGamut. Cause: ' + JSON.stringify(err));
});
```
C
chyyy0213 已提交
2414

C
chyyy0213 已提交
2415 2416
### setColorSpace<sup>8+</sup>

C
chyyy0213 已提交
2417
setColorSpace(colorSpace:ColorSpace, callback: AsyncCallback&lt;void&gt;): void
Z
zengyawen 已提交
2418

G
ge-yafang 已提交
2419
设置当前窗口为广色域模式或默认色域模式,使用callback异步回调。
Z
zengyawen 已提交
2420

G
ge-yafang 已提交
2421
**系统能力:** SystemCapability.WindowManager.WindowManager.Core
Z
zengyawen 已提交
2422

L
leafly2021 已提交
2423
**参数:**
C
chyyy0213 已提交
2424

G
ge-yafang 已提交
2425 2426 2427 2428
| 参数名     | 类型                      | 必填 | 说明         |
| ---------- | ------------------------- | ---- | ------------ |
| colorSpace | [ColorSpace](#colorspace) | 是   | 设置色域模式 |
| callback   | AsyncCallback&lt;void&gt; | 是   | 回调函数。   |
Z
zengyawen 已提交
2429

L
leafly2021 已提交
2430
**示例:**
C
chyyy0213 已提交
2431

G
ge-yafang 已提交
2432 2433 2434 2435 2436 2437 2438 2439 2440
```js
windowClass.setColorSpace(window.ColorSpace.WIDE_GAMUT, (err, data) => {
    if (err.code) {
        console.error('Failed to set window colorspace. Cause:' + JSON.stringify(err));
        return;
    }
    console.info('Succeeded in setting window colorspace. Data: ' + JSON.stringify(data));
})
```
Z
zengyawen 已提交
2441

C
chyyy0213 已提交
2442 2443 2444 2445
### setColorSpace<sup>8+</sup>

setColorSpace(colorSpace:ColorSpace): Promise&lt;void&gt;

G
ge-yafang 已提交
2446
设置当前窗口为广色域模式或默认色域模式,使用Promise异步回调。
C
chyyy0213 已提交
2447

G
ge-yafang 已提交
2448
**系统能力:** SystemCapability.WindowManager.WindowManager.Core
C
chyyy0213 已提交
2449

L
leafly2021 已提交
2450
**参数:**
C
chyyy0213 已提交
2451

G
ge-yafang 已提交
2452 2453 2454
| 参数名     | 类型                      | 必填 | 说明           |
| ---------- | ------------------------- | ---- | -------------- |
| colorSpace | [ColorSpace](#colorspace) | 是   | 设置色域模式。 |
C
chyyy0213 已提交
2455

L
leafly2021 已提交
2456
**返回值:**
C
chyyy0213 已提交
2457

G
ge-yafang 已提交
2458 2459 2460
| 类型                | 说明                      |
| ------------------- | ------------------------- |
| Promise&lt;void&gt; | 无返回结果的Promise对象。 |
C
chyyy0213 已提交
2461

L
leafly2021 已提交
2462
**示例:**
C
chyyy0213 已提交
2463

G
ge-yafang 已提交
2464
```js
X
xpeng 已提交
2465
let promise = windowClass.setColorSpace(window.ColorSpace.WIDE_GAMUT);
G
ge-yafang 已提交
2466 2467 2468 2469 2470 2471
promise.then((data)=> {
    console.info('Succeeded in setting window colorspace. Data: ' + JSON.stringify(data));
}).catch((err)=>{
    console.error('Failed to set window colorspace. Cause: ' + JSON.stringify(err));
});
```
C
chyyy0213 已提交
2472

C
chyyy0213 已提交
2473
### getColorSpace<sup>8+</sup>
Z
zengyawen 已提交
2474

C
chyyy0213 已提交
2475
getColorSpace(callback: AsyncCallback&lt;ColorSpace&gt;): void
Z
zengyawen 已提交
2476

G
ge-yafang 已提交
2477
获取当前窗口色域模式,使用callback异步回调。
Z
zengyawen 已提交
2478

G
ge-yafang 已提交
2479
**系统能力:** SystemCapability.WindowManager.WindowManager.Core
Z
zengyawen 已提交
2480

L
leafly2021 已提交
2481
**参数:**
C
chyyy0213 已提交
2482

G
ge-yafang 已提交
2483 2484 2485
| 参数名   | 类型                                           | 必填 | 说明                                                       |
| -------- | ---------------------------------------------- | ---- | ---------------------------------------------------------- |
| callback | AsyncCallback&lt;[ColorSpace](#colorspace)&gt; | 是   | 回调函数。当获取成功,err为undefined,data为当前色域模式。 |
Z
zengyawen 已提交
2486

L
leafly2021 已提交
2487
**示例:**
C
chyyy0213 已提交
2488

G
ge-yafang 已提交
2489 2490 2491 2492 2493 2494 2495 2496 2497
```js
windowClass.getColorSpace((err, data) => {
    if (err.code) {
        console.error('Failed to get window colorspace. Cause:' + JSON.stringify(err));
        return;
    }
    console.info('Succeeded in getting window colorspace. Cause:' + JSON.stringify(data));
})
```
Z
zengyawen 已提交
2498

C
chyyy0213 已提交
2499 2500 2501 2502
### getColorSpace<sup>8+</sup>

getColorSpace(): Promise&lt;ColorSpace&gt;

G
ge-yafang 已提交
2503
获取当前窗口色域模式,使用Promise异步回调。
C
chyyy0213 已提交
2504

G
ge-yafang 已提交
2505
**系统能力:** SystemCapability.WindowManager.WindowManager.Core
C
chyyy0213 已提交
2506

L
leafly2021 已提交
2507
**返回值:**
C
chyyy0213 已提交
2508

G
ge-yafang 已提交
2509 2510 2511
| 类型                                     | 说明                            |
| ---------------------------------------- | ------------------------------- |
| Promise&lt;[ColorSpace](#colorspace)&gt; | Promise对象。返回当前色域模式。 |
C
chyyy0213 已提交
2512

L
leafly2021 已提交
2513
**示例:**
C
chyyy0213 已提交
2514

G
ge-yafang 已提交
2515 2516 2517 2518 2519 2520 2521 2522
```js
let promise = windowClass.getColorSpace();
promise.then((data)=> {
    console.info('Succeeded in getting window color space. Cause:' + JSON.stringify(data));
}).catch((err)=>{
    console.error('Failed to get window colorspace. Cause: ' + JSON.stringify(err));
});
```
C
chyyy0213 已提交
2523

C
chyyy0213 已提交
2524 2525 2526 2527
### setBackgroundColor

setBackgroundColor(color: string, callback: AsyncCallback&lt;void&gt;): void

D
dubj 已提交
2528
设置窗口的背景色,使用callback异步回调。Stage模型下,该接口需要在[loadContent](#loadcontent9)之后使用。
C
chyyy0213 已提交
2529

G
ge-yafang 已提交
2530
**系统能力:** SystemCapability.WindowManager.WindowManager.Core
C
chyyy0213 已提交
2531

L
leafly2021 已提交
2532
**参数:**
C
chyyy0213 已提交
2533

G
ge-yafang 已提交
2534 2535
| 参数名   | 类型                      | 必填 | 说明                                                         |
| -------- | ------------------------- | ---- | ------------------------------------------------------------ |
G
ge-yafang 已提交
2536
| color    | string                    | 是   | 需要设置的背景色,为十六进制颜色,不区分大小写,例如`#00FF00``#FF00FF00`。 |
G
ge-yafang 已提交
2537
| callback | AsyncCallback&lt;void&gt; | 是   | 回调函数。                                                   |
C
chyyy0213 已提交
2538

L
leafly2021 已提交
2539
**示例:**
C
chyyy0213 已提交
2540

G
ge-yafang 已提交
2541 2542 2543 2544 2545 2546 2547 2548 2549 2550
```js
var color = '#00ff33';
windowClass.setBackgroundColor(color, (err, data) => {
    if (err.code) {
        console.error('Failed to set the background color. Cause: ' + JSON.stringify(err));
        return;
    }
    console.info('Succeeded in setting the background color. Data: ' + JSON.stringify(data));
});
```
C
chyyy0213 已提交
2551 2552 2553 2554 2555

### setBackgroundColor

setBackgroundColor(color: string): Promise&lt;void&gt;

D
dubj 已提交
2556
设置窗口的背景色,使用Promise异步回调。Stage模型下,该接口需要在[loadContent](#loadcontent9)之后使用。
C
chyyy0213 已提交
2557

G
ge-yafang 已提交
2558
**系统能力:** SystemCapability.WindowManager.WindowManager.Core
C
chyyy0213 已提交
2559

L
leafly2021 已提交
2560
**参数:**
C
chyyy0213 已提交
2561

G
ge-yafang 已提交
2562 2563
| 参数名 | 类型   | 必填 | 说明                                                         |
| ------ | ------ | ---- | ------------------------------------------------------------ |
G
ge-yafang 已提交
2564
| color  | string | 是   | 需要设置的背景色,为十六进制颜色,不区分大小写,例如"#00FF00"或"#FF00FF00"。 |
C
chyyy0213 已提交
2565

L
leafly2021 已提交
2566
**返回值:**
C
chyyy0213 已提交
2567

G
ge-yafang 已提交
2568 2569 2570
| 类型                | 说明                      |
| ------------------- | ------------------------- |
| Promise&lt;void&gt; | 无返回结果的Promise对象。 |
C
chyyy0213 已提交
2571

L
leafly2021 已提交
2572
**示例:**
C
chyyy0213 已提交
2573

G
ge-yafang 已提交
2574 2575 2576 2577 2578 2579 2580 2581 2582
```js
var color = '#00ff33';
let promise = windowClass.setBackgroundColor(color);
promise.then((data)=> {
    console.info('Succeeded in setting the background color. Data: ' + JSON.stringify(data));
}).catch((err)=>{
    console.error('Failed to set the background color. Cause: ' + JSON.stringify(err));
});
```
C
chyyy0213 已提交
2583

2584 2585 2586 2587 2588 2589
### setWakeUpScreen()<sup>9+</sup>

setWakeUpScreen(wakeUp: boolean): void;

窗口唤醒屏幕。

2590
**系统接口:** 此接口为系统接口。
2591 2592 2593

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

L
leafly2021 已提交
2594
**参数:**
2595 2596 2597 2598 2599

| 参数名           | 类型    | 必填 | 说明                         |
| ---------------- | ------- | ---- | ---------------------------- |
| wakeUp           | boolean | 是   | 是否设置唤醒屏幕。 |

L
leafly2021 已提交
2600
**示例:**
2601

2602
```js
2603 2604 2605 2606
var wakeUp = true;
windowClass.setWakeUpScreen(wakeUp);
```

C
chyyy0213 已提交
2607 2608 2609 2610
### setBrightness

setBrightness(brightness: number, callback: AsyncCallback&lt;void&gt;): void

G
ge-yafang 已提交
2611
设置屏幕亮度值,使用callback异步回调。
C
chyyy0213 已提交
2612

G
ge-yafang 已提交
2613
**系统能力:** SystemCapability.WindowManager.WindowManager.Core
C
chyyy0213 已提交
2614

L
leafly2021 已提交
2615
**参数:**
C
chyyy0213 已提交
2616

G
ge-yafang 已提交
2617 2618 2619 2620
| 参数名     | 类型                      | 必填 | 说明                                 |
| ---------- | ------------------------- | ---- | ------------------------------------ |
| brightness | number                    | 是   | 屏幕亮度值,值为0-1之间。1表示最亮。 |
| callback   | AsyncCallback&lt;void&gt; | 是   | 回调函数。                           |
C
chyyy0213 已提交
2621

L
leafly2021 已提交
2622
**示例:**
C
chyyy0213 已提交
2623

G
ge-yafang 已提交
2624 2625 2626 2627 2628 2629 2630 2631 2632 2633
```js
var brightness = 1;
windowClass.setBrightness(brightness, (err, data) => {
    if (err.code) {
        console.error('Failed to set the brightness. Cause: ' + JSON.stringify(err));
        return;
    }
    console.info('Succeeded in setting the brightness. Data: ' + JSON.stringify(data));
});
```
C
chyyy0213 已提交
2634 2635 2636 2637 2638

### setBrightness

setBrightness(brightness: number): Promise&lt;void&gt;

G
ge-yafang 已提交
2639
设置屏幕亮度值,使用Promise异步回调。
C
chyyy0213 已提交
2640

G
ge-yafang 已提交
2641
**系统能力:** SystemCapability.WindowManager.WindowManager.Core
C
chyyy0213 已提交
2642

L
leafly2021 已提交
2643
**参数:**
C
chyyy0213 已提交
2644

G
ge-yafang 已提交
2645 2646 2647
| 参数名     | 类型   | 必填 | 说明                                 |
| ---------- | ------ | ---- | ------------------------------------ |
| brightness | number | 是   | 屏幕亮度值,值为0-1之间。1表示最亮。 |
C
chyyy0213 已提交
2648

L
leafly2021 已提交
2649
**返回值:**
C
chyyy0213 已提交
2650

G
ge-yafang 已提交
2651 2652 2653
| 类型                | 说明                      |
| ------------------- | ------------------------- |
| Promise&lt;void&gt; | 无返回结果的Promise对象。 |
C
chyyy0213 已提交
2654

L
leafly2021 已提交
2655
**示例:**
C
chyyy0213 已提交
2656

G
ge-yafang 已提交
2657 2658 2659 2660 2661 2662 2663 2664 2665
```js
var brightness = 1;
let promise = windowClass.setBrightness(brightness);
promise.then((data)=> {
    console.info('Succeeded in setting the brightness. Data: ' + JSON.stringify(data));
}).catch((err)=>{
    console.error('Failed to set the brightness. Cause: ' + JSON.stringify(err));
});
```
C
chyyy0213 已提交
2666

Z
xxx  
zhirong 已提交
2667 2668 2669 2670
### setDimBehind<sup>(deprecated)</sup>

setDimBehind(dimBehindValue: number, callback: AsyncCallback&lt;void&gt;): void

G
ge-yafang 已提交
2671
窗口叠加时,设备有子窗口的情况下设置靠后的窗口的暗度值,使用callback异步回调。
Z
xxx  
zhirong 已提交
2672

2673 2674 2675
> **说明:** 该接口不支持使用。
>
> 从API version 9开始废弃。从API Version 7开始支持。
Z
xxx  
zhirong 已提交
2676 2677 2678 2679 2680

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

**参数:**

G
ge-yafang 已提交
2681 2682 2683 2684
| 参数名         | 类型                      | 必填 | 说明                                               |
| -------------- | ------------------------- | ---- | -------------------------------------------------- |
| dimBehindValue | number                    | 是   | 表示靠后的窗口的暗度值,取值范围为0-1,1表示最暗。 |
| callback       | AsyncCallback&lt;void&gt; | 是   | 回调函数。                                         |
Z
xxx  
zhirong 已提交
2685 2686 2687

**示例:**

G
ge-yafang 已提交
2688 2689 2690 2691 2692 2693 2694 2695 2696
```js
windowClass.setDimBehind(0.5, (err, data) => {
    if (err.code) {
        console.error('Failed to set the dimness. Cause: ' + JSON.stringify(err));
        return;
    }
    console.info('Succeeded in setting the dimness. Data:' + JSON.stringify(data));
});
```
Z
xxx  
zhirong 已提交
2697 2698 2699 2700 2701

### setDimBehind<sup>(deprecated)</sup>

setDimBehind(dimBehindValue: number): Promise&lt;void&gt;

G
ge-yafang 已提交
2702
窗口叠加时,设备有子窗口的情况下设置靠后的窗口的暗度值,使用Promise异步回调。
Z
xxx  
zhirong 已提交
2703

2704
> **说明:** 该接口不支持使用。
L
leafly2021 已提交
2705
>
2706
> 从API version 9开始废弃。从API Version 7开始支持。
Z
xxx  
zhirong 已提交
2707 2708 2709 2710 2711

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

**参数:**

G
ge-yafang 已提交
2712 2713 2714
| 参数名         | 类型   | 必填 | 说明                                               |
| -------------- | ------ | ---- | -------------------------------------------------- |
| dimBehindValue | number | 是   | 表示靠后的窗口的暗度值,取值范围为0-1,1表示最暗。 |
Z
xxx  
zhirong 已提交
2715 2716 2717

**返回值:**

G
ge-yafang 已提交
2718 2719 2720
| 类型                | 说明                      |
| ------------------- | ------------------------- |
| Promise&lt;void&gt; | 无返回结果的Promise对象。 |
Z
xxx  
zhirong 已提交
2721 2722 2723

**示例:**

G
ge-yafang 已提交
2724 2725 2726 2727 2728 2729 2730 2731
```js
let promise = windowClass.setDimBehind(0.5);
promise.then((data)=> {
    console.info('Succeeded in setting the dimness. Data: ' + JSON.stringify(data));
}).catch((err)=>{
    console.error('Failed to set the dimness. Cause: ' + JSON.stringify(err));
});
```
Z
xxx  
zhirong 已提交
2732

C
chyyy0213 已提交
2733 2734 2735 2736
### setFocusable<sup>7+</sup>

setFocusable(isFocusable: boolean, callback: AsyncCallback&lt;void&gt;): void

G
ge-yafang 已提交
2737
设置点击时是否支持切换焦点窗口,使用callback异步回调。
C
chyyy0213 已提交
2738

G
ge-yafang 已提交
2739
**系统能力:** SystemCapability.WindowManager.WindowManager.Core
C
chyyy0213 已提交
2740

L
leafly2021 已提交
2741
**参数:**
C
chyyy0213 已提交
2742

G
ge-yafang 已提交
2743 2744 2745 2746
| 参数名      | 类型                      | 必填 | 说明                         |
| ----------- | ------------------------- | ---- | ---------------------------- |
| isFocusable | boolean                   | 是   | 点击时是否支持切换焦点窗口。 |
| callback    | AsyncCallback&lt;void&gt; | 是   | 回调函数。                   |
C
chyyy0213 已提交
2747

L
leafly2021 已提交
2748
**示例:**
C
chyyy0213 已提交
2749

G
ge-yafang 已提交
2750 2751 2752 2753 2754 2755 2756 2757 2758 2759
```js
var isFocusable= true;
windowClass.setFocusable(isFocusable, (err, data) => {
    if (err.code) {
        console.error('Failed to set the window to be focusable. Cause:' + JSON.stringify(err));
        return;
    }
    console.info('Succeeded in setting the window to be focusable. Data: ' + JSON.stringify(data));
});
```
C
chyyy0213 已提交
2760 2761 2762 2763 2764

### setFocusable<sup>7+</sup>

setFocusable(isFocusable: boolean): Promise&lt;void&gt;

G
ge-yafang 已提交
2765
设置点击时是否支持切换焦点窗口,使用Promise异步回调。
C
chyyy0213 已提交
2766

G
ge-yafang 已提交
2767
**系统能力:** SystemCapability.WindowManager.WindowManager.Core
C
chyyy0213 已提交
2768

L
leafly2021 已提交
2769
**参数:**
C
chyyy0213 已提交
2770

G
ge-yafang 已提交
2771 2772 2773
| 参数名      | 类型    | 必填 | 说明                         |
| ----------- | ------- | ---- | ---------------------------- |
| isFocusable | boolean | 是   | 点击时是否支持切换焦点窗口。 |
C
chyyy0213 已提交
2774

L
leafly2021 已提交
2775
**返回值:**
C
chyyy0213 已提交
2776

G
ge-yafang 已提交
2777 2778 2779
| 类型                | 说明                      |
| ------------------- | ------------------------- |
| Promise&lt;void&gt; | 无返回结果的Promise对象。 |
C
chyyy0213 已提交
2780

L
leafly2021 已提交
2781
**示例:**
C
chyyy0213 已提交
2782

G
ge-yafang 已提交
2783 2784 2785 2786 2787 2788 2789 2790 2791
```js
var isFocusable= true;
let promise = windowClass.setFocusable(isFocusable);
promise.then((data)=> {
    console.info('Succeeded in setting the window to be focusable. Data: ' + JSON.stringify(data));
}).catch((err)=>{
    console.error('Failed to set the window to be focusable. Cause: ' + JSON.stringify(err));
});
```
C
chyyy0213 已提交
2792 2793 2794 2795 2796

### setKeepScreenOn

setKeepScreenOn(isKeepScreenOn: boolean, callback: AsyncCallback&lt;void&gt;): void

G
ge-yafang 已提交
2797
设置屏幕是否为常亮状态,使用callback异步回调。
C
chyyy0213 已提交
2798

G
ge-yafang 已提交
2799
**系统能力:** SystemCapability.WindowManager.WindowManager.Core
C
chyyy0213 已提交
2800

L
leafly2021 已提交
2801
**参数:**
C
chyyy0213 已提交
2802

G
ge-yafang 已提交
2803 2804
| 参数名         | 类型                      | 必填 | 说明                     |
| -------------- | ------------------------- | ---- | ------------------------ |
G
ge-yafang 已提交
2805
| isKeepScreenOn | boolean                   | 是   | 设置屏幕是否为常亮状态。 |
G
ge-yafang 已提交
2806
| callback       | AsyncCallback&lt;void&gt; | 是   | 回调函数。               |
C
chyyy0213 已提交
2807

L
leafly2021 已提交
2808
**示例:**
C
chyyy0213 已提交
2809

G
ge-yafang 已提交
2810 2811 2812 2813 2814 2815 2816 2817 2818 2819
```js
var isKeepScreenOn = true;
windowClass.setKeepScreenOn(isKeepScreenOn, (err, data) => {
    if (err.code) {
        console.error('Failed to set the screen to be always on. Cause: ' + JSON.stringify(err));
        return;
    }
    console.info('Succeeded in setting the screen to be always on. Data: ' + JSON.stringify(data));
});
```
Z
xxx  
zhirong 已提交
2820

G
ge-yafang 已提交
2821
### setKeepScreenOn
Z
xxx  
zhirong 已提交
2822

G
ge-yafang 已提交
2823
setKeepScreenOn(isKeepScreenOn: boolean): Promise&lt;void&gt;
Z
xxx  
zhirong 已提交
2824

G
ge-yafang 已提交
2825
设置屏幕是否为常亮状态,使用Promise异步回调。
Z
xxx  
zhirong 已提交
2826 2827 2828

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

L
leafly2021 已提交
2829
**参数:**
G
ge-yafang 已提交
2830 2831 2832 2833 2834

| 参数名         | 类型    | 必填 | 说明                     |
| -------------- | ------- | ---- | ------------------------ |
| isKeepScreenOn | boolean | 是   | 设置屏幕是否为常亮状态。 |

L
leafly2021 已提交
2835
**返回值:**
Z
xxx  
zhirong 已提交
2836

G
ge-yafang 已提交
2837 2838 2839
| 类型                | 说明                      |
| ------------------- | ------------------------- |
| Promise&lt;void&gt; | 无返回结果的Promise对象。 |
Z
xxx  
zhirong 已提交
2840 2841 2842

**示例:**

G
ge-yafang 已提交
2843 2844 2845 2846 2847 2848
```js
var isKeepScreenOn = true;
let promise = windowClass.setKeepScreenOn(isKeepScreenOn);
promise.then((data) => {
    console.info('Succeeded in setting the screen to be always on. Data: ' + JSON.stringify(data));
}).catch((err)=>{
L
leafly2021 已提交
2849
    console.info('Failed to set the screen to be always on. Cause:  ' + JSON.stringify(err));
G
ge-yafang 已提交
2850 2851
});
```
Z
xxx  
zhirong 已提交
2852 2853 2854

### setOutsideTouchable<sup>(deprecated)</sup>

G
ge-yafang 已提交
2855
setOutsideTouchable(touchable: boolean, callback: AsyncCallback&lt;void&gt;): void
Z
xxx  
zhirong 已提交
2856

G
ge-yafang 已提交
2857
设置是否允许可点击子窗口之外的区域,使用callback异步回调。
Z
xxx  
zhirong 已提交
2858

2859
> **说明:** 该接口不支持使用。
L
leafly2021 已提交
2860
>
2861
> 从API version 9开始废弃。从API Version 7开始支持。
Z
xxx  
zhirong 已提交
2862 2863 2864 2865 2866

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

**参数:**

G
ge-yafang 已提交
2867 2868 2869 2870
| 参数名    | 类型                      | 必填 | 说明             |
| --------- | ------------------------- | ---- | ---------------- |
| touchable | boolean                   | 是   | 设置是否可点击。 |
| callback  | AsyncCallback&lt;void&gt; | 是   | 回调函数。       |
Z
xxx  
zhirong 已提交
2871 2872 2873

**示例:**

G
ge-yafang 已提交
2874 2875 2876 2877 2878 2879 2880 2881 2882
```js
windowClass.setOutsideTouchable(true, (err, data) => {
    if (err.code) {
        console.error('Failed to set the area to be touchable. Cause: ' + JSON.stringify(err));
        return;
    }
    console.info('Succeeded in setting the area to be touchable. Data: ' + JSON.stringify(data));
})
```
Z
xxx  
zhirong 已提交
2883

G
ge-yafang 已提交
2884
### setOutsideTouchable<sup>(deprecated)</sup>
C
chyyy0213 已提交
2885

G
ge-yafang 已提交
2886
setOutsideTouchable(touchable: boolean): Promise&lt;void&gt;
C
chyyy0213 已提交
2887

G
ge-yafang 已提交
2888 2889
设置是否允许可点击子窗口之外的区域,使用Promise异步回调。。

2890
> **说明:** 该接口不支持使用。
L
leafly2021 已提交
2891
>
2892
> 从API version 9开始废弃。从 API version 7开始支持。
C
chyyy0213 已提交
2893

G
ge-yafang 已提交
2894
**系统能力:** SystemCapability.WindowManager.WindowManager.Core
C
chyyy0213 已提交
2895

G
ge-yafang 已提交
2896
**参数:**
C
chyyy0213 已提交
2897

G
ge-yafang 已提交
2898 2899 2900
| 参数名    | 类型    | 必填 | 说明             |
| --------- | ------- | ---- | ---------------- |
| touchable | boolean | 是   | 设置是否可点击。 |
C
chyyy0213 已提交
2901

G
ge-yafang 已提交
2902
**返回值:**
C
chyyy0213 已提交
2903

G
ge-yafang 已提交
2904 2905 2906
| 类型                | 说明                      |
| ------------------- | ------------------------- |
| Promise&lt;void&gt; | 无返回结果的Promise对象。 |
C
chyyy0213 已提交
2907

G
ge-yafang 已提交
2908
**示例:**
C
chyyy0213 已提交
2909

G
ge-yafang 已提交
2910 2911 2912 2913 2914 2915 2916 2917
```js
let promise = windowClass.setOutsideTouchable(true);
promise.then((data)=> {
    console.info('Succeeded in setting the area to be touchable. Data: ' + JSON.stringify(data));
}).catch((err)=>{
    console.error('Failed to set the area to be touchable. Cause: ' + JSON.stringify(err));
});
```
C
chyyy0213 已提交
2918 2919 2920 2921 2922

### setPrivacyMode<sup>7+</sup>

setPrivacyMode(isPrivacyMode: boolean, callback: AsyncCallback&lt;void&gt;): void

2923
设置窗口是否为隐私模式,使用callback异步回调。设置为隐私模式的窗口,窗口内容将无法被截屏或录屏。
C
chyyy0213 已提交
2924

G
ge-yafang 已提交
2925
**系统能力:** SystemCapability.WindowManager.WindowManager.Core
C
chyyy0213 已提交
2926

L
leafly2021 已提交
2927
**参数:**
C
chyyy0213 已提交
2928

G
ge-yafang 已提交
2929 2930 2931 2932
| 参数名        | 类型                      | 必填 | 说明                 |
| ------------- | ------------------------- | ---- | -------------------- |
| isPrivacyMode | boolean                   | 是   | 窗口是否为隐私模式。 |
| callback      | AsyncCallback&lt;void&gt; | 是   | 回调函数。           |
C
chyyy0213 已提交
2933

L
leafly2021 已提交
2934
**示例:**
C
chyyy0213 已提交
2935

G
ge-yafang 已提交
2936 2937 2938 2939 2940 2941 2942 2943 2944 2945 2946
```js
var isPrivacyMode = true;
windowClass.setPrivacyMode(isPrivacyMode, (err, data) => {
    if (err.code) {
        console.error('Failed to set the window to privacy mode. Cause:' + JSON.stringify(err));
        return;
    }
    console.info('Succeeded in setting the window to privacy mode. Data:' + JSON.stringify(data));

});
```
C
chyyy0213 已提交
2947 2948 2949 2950 2951

### setPrivacyMode<sup>7+</sup>

setPrivacyMode(isPrivacyMode: boolean): Promise&lt;void&gt;

2952
设置窗口是否为隐私模式,使用Promise异步回调。设置为隐私模式的窗口,窗口内容将无法被截屏或录屏。
C
chyyy0213 已提交
2953

G
ge-yafang 已提交
2954
**系统能力:** SystemCapability.WindowManager.WindowManager.Core
C
chyyy0213 已提交
2955

L
leafly2021 已提交
2956
**参数:**
C
chyyy0213 已提交
2957

G
ge-yafang 已提交
2958 2959 2960
| 参数名        | 类型    | 必填 | 说明                 |
| ------------- | ------- | ---- | -------------------- |
| isPrivacyMode | boolean | 是   | 窗口是否为隐私模式。 |
C
chyyy0213 已提交
2961

L
leafly2021 已提交
2962
**返回值:**
C
chyyy0213 已提交
2963

G
ge-yafang 已提交
2964 2965 2966
| 类型                | 说明                      |
| ------------------- | ------------------------- |
| Promise&lt;void&gt; | 无返回结果的Promise对象。 |
C
chyyy0213 已提交
2967

L
leafly2021 已提交
2968
**示例:**
C
chyyy0213 已提交
2969

G
ge-yafang 已提交
2970 2971 2972 2973 2974 2975 2976 2977 2978
```js
var isPrivacyMode = true;
let promise = windowClass.setPrivacyMode(isPrivacyMode);
promise.then((data)=> {
    console.info('Succeeded in setting the window to privacy mode. Data: ' + JSON.stringify(data));
}).catch((err)=>{
    console.error('Failed to set the window to privacy mode. Cause: ' + JSON.stringify(err));
});
```
C
chyyy0213 已提交
2979

2980 2981 2982 2983 2984
### setSnapshotSkip<sup>9+</sup>
setSnapshotSkip(isSkip: boolean): void

截屏录屏是否忽略当前窗口。

2985
**系统接口:** 此接口为系统接口。
2986 2987 2988 2989 2990 2991 2992 2993 2994 2995 2996 2997 2998

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

**参数:**

| 参数名        | 类型    | 必填 | 说明                 |
| ------------- | ------- | ---- | -------------------- |
| isSkip | boolean | 是   | 截屏录屏是否忽略当前窗口,默认为false。<br>true表示忽略当前窗口,false表示不忽略当前窗口。</br> |
```js
var isSkip = true;
windowClass.setSnapshotSkip(isSkip);
```

C
chyyy0213 已提交
2999 3000 3001 3002
### setTouchable<sup>7+</sup>

setTouchable(isTouchable: boolean, callback: AsyncCallback&lt;void&gt;): void

G
ge-yafang 已提交
3003
设置窗口是否为可触状态,使用callback异步回调。
C
chyyy0213 已提交
3004

G
ge-yafang 已提交
3005
**系统能力:** SystemCapability.WindowManager.WindowManager.Core
C
chyyy0213 已提交
3006

L
leafly2021 已提交
3007
**参数:**
C
chyyy0213 已提交
3008

G
ge-yafang 已提交
3009 3010 3011 3012
| 参数名      | 类型                      | 必填 | 说明                 |
| ----------- | ------------------------- | ---- | -------------------- |
| isTouchable | boolean                   | 是   | 窗口是否为可触状态。 |
| callback    | AsyncCallback&lt;void&gt; | 是   | 回调函数。           |
C
chyyy0213 已提交
3013

L
leafly2021 已提交
3014
**示例:**
C
chyyy0213 已提交
3015

G
ge-yafang 已提交
3016 3017 3018 3019 3020 3021 3022 3023 3024 3025 3026
```js
var isTouchable = true;
windowClass.setTouchable(isTouchable, (err, data) => {
    if (err.code) {
        console.error('Failed to set the window to be touchable. Cause:' + JSON.stringify(err));
        return;
    }
    console.info('Succeeded in setting the window to be touchable. Data:' + JSON.stringify(data));

});
```
C
chyyy0213 已提交
3027 3028 3029 3030 3031

### setTouchable<sup>7+</sup>

setTouchable(isTouchable: boolean): Promise&lt;void&gt;

G
ge-yafang 已提交
3032
设置窗口是否为可触状态,使用Promise异步回调。
C
chyyy0213 已提交
3033

G
ge-yafang 已提交
3034
**系统能力:** SystemCapability.WindowManager.WindowManager.Core
C
chyyy0213 已提交
3035

L
leafly2021 已提交
3036
**参数:**
C
chyyy0213 已提交
3037

G
ge-yafang 已提交
3038 3039 3040
| 参数名      | 类型    | 必填 | 说明                 |
| ----------- | ------- | ---- | -------------------- |
| isTouchable | boolean | 是   | 窗口是否为可触状态。 |
C
chyyy0213 已提交
3041

L
leafly2021 已提交
3042
**返回值:**
C
chyyy0213 已提交
3043

G
ge-yafang 已提交
3044 3045 3046
| 类型                | 说明                      |
| ------------------- | ------------------------- |
| Promise&lt;void&gt; | 无返回结果的Promise对象。 |
C
chyyy0213 已提交
3047

L
leafly2021 已提交
3048
**示例:**
C
chyyy0213 已提交
3049

G
ge-yafang 已提交
3050 3051 3052 3053 3054 3055 3056 3057 3058
```js
var isTouchable = true;
let promise = windowClass.setTouchable(isTouchable);
promise.then((data)=> {
    console.info('Succeeded in setting the window to be touchable. Data: ' + JSON.stringify(data));
}).catch((err)=>{
    console.error('Failed to set the window to be touchable. Cause: ' + JSON.stringify(err));
});
```
C
chyyy0213 已提交
3059

W
wlj 已提交
3060 3061 3062 3063 3064 3065
### setForbidSplitMove<sup>9+</sup>

setForbidSplitMove(isForbidSplitMove: boolean, callback: AsyncCallback&lt;void&gt;): void

设置窗口在分屏模式下是否被禁止移动,使用callback异步回调。

3066
**系统接口:** 此接口为系统接口。
W
wlj 已提交
3067 3068 3069

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

L
leafly2021 已提交
3070
**参数:**
W
wlj 已提交
3071 3072 3073 3074 3075 3076

| 参数名      | 类型                      | 必填 | 说明                 |
| ----------- | ------------------------- | ---- | -------------------- |
| isForbidSplitMove | boolean                   | 是   | 窗口在分屏模式下是否被禁止移动。 |
| callback    | AsyncCallback&lt;void&gt; | 是   | 回调函数。           |

L
leafly2021 已提交
3077
**示例:**
W
wlj 已提交
3078 3079 3080 3081 3082 3083 3084 3085 3086 3087 3088 3089 3090 3091 3092 3093 3094 3095 3096

```js
var isForbidSplitMove = true;
windowClass.setForbidSplitMove(isForbidSplitMove, (err, data) => {
    if (err.code) {
        console.error('Failed to forbid window moving in split screen mode. Cause:' + JSON.stringify(err));
        return;
    }
    console.info('Succeeded in forbidding window moving in split screen mode. Data:' + JSON.stringify(data));

});
```

### setForbidSplitMove<sup>9+</sup>

setForbidSplitMove(isForbidSplitMove: boolean): Promise&lt;void&gt;

设置窗口在分屏模式下是否被禁止移动,使用Promise异步回调。

3097
**系统接口:** 此接口为系统接口。
W
wlj 已提交
3098 3099 3100

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

L
leafly2021 已提交
3101
**参数:**
W
wlj 已提交
3102 3103 3104 3105 3106

| 参数名      | 类型    | 必填 | 说明                 |
| ----------- | ------- | ---- | -------------------- |
| isForbidSplitMove | boolean | 是   | 窗口在分屏模式下是否被禁止移动。 |

L
leafly2021 已提交
3107
**返回值:**
W
wlj 已提交
3108 3109 3110 3111 3112

| 类型                | 说明                      |
| ------------------- | ------------------------- |
| Promise&lt;void&gt; | 无返回结果的Promise对象。 |

L
leafly2021 已提交
3113
**示例:**
W
wlj 已提交
3114 3115 3116 3117 3118 3119 3120 3121 3122 3123 3124

```js
var isForbidSplitMove = true;
let promise = windowClass.setForbidSplitMove(isForbidSplitMove);
promise.then((data)=> {
    console.info('Succeeded in forbidding window moving in split screen mode. Data: ' + JSON.stringify(data));
}).catch((err)=>{
    console.error('Failed to forbidd window moving in split screen mode. Cause: ' + JSON.stringify(err));
});
```

3125 3126 3127 3128 3129 3130 3131 3132 3133 3134 3135 3136 3137 3138 3139 3140 3141 3142 3143 3144 3145 3146 3147 3148 3149 3150 3151 3152 3153 3154 3155 3156 3157 3158 3159 3160 3161 3162 3163 3164 3165 3166 3167 3168 3169 3170 3171 3172 3173 3174 3175 3176 3177
### snapshot<sup>9+</sup>

snapshot(callback: AsyncCallback&lt;image.PixelMap&gt;): void

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

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

**参数:**

| 参数名      | 类型                      | 必填 | 说明                 |
| ----------- | ------------------------- | ---- | -------------------- |
| callback    | AsyncCallback&lt;[image.PixelMap](js-apis-image.md#pixelmap7)&gt; | 是   | 回调函数。  |

**示例:**

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

### snapshot<sup>9+</sup>

snapshot(): Promise&lt;image.PixelMap&gt;

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

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

**返回值:**

| 类型                | 说明                      |
| ------------------- | ------------------------- |
| Promise&lt;[image.PixelMap](js-apis-image.md#pixelmap7)&gt; | Promise对象。返回当前窗口截图。 |

**示例:**

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

Q
qianlf 已提交
3178 3179 3180 3181 3182 3183
### setBlur<sup>9+</sup>

setBlur(radius: number): void

设置窗口模糊。

3184
**系统接口:** 此接口为系统接口。
Q
qianlf 已提交
3185 3186 3187

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

L
leafly2021 已提交
3188
**参数:**
Q
qianlf 已提交
3189 3190 3191 3192 3193 3194 3195 3196 3197 3198 3199 3200 3201 3202 3203 3204 3205

| 参数名 | 类型   | 必填 | 说明                                                         |
| ------ | ------ | ---- | ------------------------------------------------------------ |
| radius | number | 是   | 表示窗口模糊的半径值,取值范围为大于等于0,0表示关闭窗口模糊。 |

**示例:**

```js
windowClass.setBlur(4.0);
```

### setBackdropBlur<sup>9+</sup>

setBackdropBlur(radius: number): void

设置窗口背景模糊。

3206
**系统接口:** 此接口为系统接口。
Q
qianlf 已提交
3207 3208 3209

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

L
leafly2021 已提交
3210
**参数:**
Q
qianlf 已提交
3211 3212 3213 3214 3215 3216 3217 3218 3219 3220 3221 3222 3223 3224 3225 3226 3227

| 参数名 | 类型   | 必填 | 说明                                                         |
| ------ | ------ | ---- | ------------------------------------------------------------ |
| radius | number | 是   | 表示窗口背景模糊的半径值,取值范围为大于等于0,0表示关闭窗口背景模糊。 |

**示例:**

```js
windowClass.setBackdropBlur(4.0);
```

### setBackdropBlurStyle<sup>9+</sup>

setBackdropBlurStyle(blurStyle: BlurStyle): void

设置窗口背景模糊类型。

3228
**系统接口:** 此接口为系统接口。
Q
qianlf 已提交
3229 3230 3231

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

L
leafly2021 已提交
3232
**参数:**
Q
qianlf 已提交
3233 3234 3235 3236 3237 3238 3239 3240 3241 3242 3243 3244 3245 3246 3247 3248 3249

| 参数名    | 类型      | 必填 | 说明                   |
| --------- | --------- | ---- | ---------------------- |
| blurStyle | [BlurStyle](#blurstyle9) | 是   | 表示窗口背景模糊类型。 |

**示例:**

```js
windowClass.setBackdropBlurStyle(window.BlurType.THIN);
```

### setShadow<sup>9+</sup>

setShadow(radius: number, color?: string, offsetX?: number, offsetY?: number): void

设置窗口边缘阴影。

3250
**系统接口:** 此接口为系统接口。
Q
qianlf 已提交
3251 3252 3253

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

L
leafly2021 已提交
3254
**参数:**
Q
qianlf 已提交
3255 3256 3257 3258 3259 3260 3261 3262 3263 3264 3265 3266 3267 3268 3269 3270 3271 3272 3273 3274

| 参数名  | 类型   | 必填 | 说明                                                         |
| ------- | ------ | ---- | ------------------------------------------------------------ |
| radius  | number | 是   | 表示窗口边缘阴影的模糊半径,取值范围为大于等于0,0表示关闭窗口边缘阴影。 |
| color   | string | 否   | 表示窗口边缘阴影的颜色,为十六进制颜色,不区分大小写,例如`#00FF00``#FF00FF00`。 |
| offsetX | number | 否   | 表示窗口边缘阴影的X轴的偏移量,单位为px。                    |
| offsetY | number | 否   | 表示窗口边缘阴影的Y轴的偏移量,单位为px。                    |

**示例:**

```js
windowClass.setShadow(4.0, '#FF00FF00', 2, 3);
```

### setCornerRadius<sup>9+</sup>

setCornerRadius(cornerRadius: number): void

设置窗口圆角半径。

3275
**系统接口:** 此接口为系统接口。
Q
qianlf 已提交
3276 3277 3278

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

L
leafly2021 已提交
3279
**参数:**
Q
qianlf 已提交
3280 3281 3282 3283 3284 3285 3286 3287 3288 3289 3290

| 参数名      | 类型    | 必填 | 说明                 |
| ----------- | ------- | ---- | -------------------- |
| radius | number | 是   | 表示窗口圆角的半径值,取值范围为大于等于0,0表示没有窗口圆角。 |

**示例:**

```js
windowClass.setCornerRadius(4.0);
```

L
leafly2021 已提交
3291 3292 3293 3294 3295 3296
### opacity<sup>9+</sup>

opacity(opacity: number): void

设置窗口透明度。

3297
**系统接口:** 此接口为系统接口。
L
leafly2021 已提交
3298 3299 3300 3301 3302 3303 3304 3305 3306 3307 3308

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

**参数:**

| 参数名  | 类型   | 必填 | 说明                  |
| ------- | ------ | ---- | --------------------- |
| opacity | number | 是   | 透明度,范围0.0~1.0。 |

**示例:**

3309
```js
L
leafly2021 已提交
3310 3311 3312 3313 3314 3315 3316 3317 3318
windowClass.opacity(0.5);
```

### scale<sup>9+</sup>

scale(scaleOptions: ScaleOptions): void

设置窗口缩放参数。

3319
**系统接口:** 此接口为系统接口。
L
leafly2021 已提交
3320 3321 3322 3323 3324 3325 3326 3327 3328 3329 3330

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

**参数:**

| 参数名       | 类型                           | 必填 | 说明       |
| ------------ | ------------------------------ | ---- | ---------- |
| scaleOptions | [ScaleOptions](#scaleoptions9) | 是   | 缩放参数。 |

**示例:**

3331
```js
C
chenhaiying 已提交
3332 3333 3334 3335 3336 3337
var obj : window.ScaleOptions = {
  x : 2.0,
  y : 1.0,
  pivotX = 0.5;
  pivotY = 0.5;
}
L
leafly2021 已提交
3338 3339 3340 3341 3342 3343 3344 3345 3346
windowClass.scale(obj);
```

### rotate<sup>9+</sup>

rotate(rotateOptions: RotateOptions): void

设置窗口旋转参数。

3347
**系统接口:** 此接口为系统接口。
L
leafly2021 已提交
3348 3349 3350 3351 3352 3353 3354 3355 3356 3357 3358

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

**参数:**

| 参数名        | 类型                             | 必填 | 说明       |
| ------------- | -------------------------------- | ---- | ---------- |
| rotateOptions | [RotateOptions](#rotateoptions9) | 是   | 旋转参数。 |

**示例:**

3359
```js
C
chenhaiying 已提交
3360 3361 3362 3363 3364 3365 3366
var obj : window.RotateOptions = {
  x : 1.0,
  y : 1.0,
  z : 45.0,
  pivotX = 0.5;
  pivotY = 0.5;
}
L
leafly2021 已提交
3367 3368 3369 3370 3371 3372 3373 3374 3375
windowClass.rotate(obj);
```

### translate<sup>9+</sup>

translate(translateOptions: TranslateOptions): void

设置窗口平移参数。

3376
**系统接口:** 此接口为系统接口。
L
leafly2021 已提交
3377 3378 3379 3380 3381 3382 3383 3384 3385 3386 3387

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

**参数:**

| 参数名           | 类型                                   | 必填 | 说明       |
| ---------------- | -------------------------------------- | ---- | ---------- |
| translateOptions | [TranslateOptions](#translateoptions9) | 是   | 平移参数。 |

**示例:**

3388
```js
C
chenhaiying 已提交
3389 3390 3391 3392 3393
var obj : window.TranslateOptions = {
  x : 100.0,
  y : 0.0,
  z : 0.0
}
L
leafly2021 已提交
3394 3395 3396 3397 3398 3399 3400 3401 3402
windowClass.translate(obj);
```

###  getTransitionController<sup>9+</sup>

 getTransitionController(): TransitionController

获取窗口属性转换控制器。

3403
**系统接口:** 此接口为系统接口。
L
leafly2021 已提交
3404 3405 3406 3407 3408 3409 3410 3411 3412 3413 3414

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

**返回值:**

| 类型                                           | 说明             |
| ---------------------------------------------- | ---------------- |
| [TransitionController](#transitioncontroller9) | 属性转换控制器。 |

**示例:**

3415
```js
L
leafly2021 已提交
3416 3417 3418 3419 3420 3421 3422 3423 3424 3425
let controller = windowClass.getTransitionController(); // 获取属性转换控制器
controller.animationForHidden = (context : window.TransitionContext) => {
	let toWindow = context.toWindow
 	animateTo({
    	duration: 1000, // 动画时长
        tempo: 0.5, // 播放速率
        curve: Curve.EaseInOut, // 动画曲线
        delay: 0, // 动画延迟
        iterations: 1, // 播放次数
        playMode: PlayMode.Normal, // 动画模式
C
chenhaiying 已提交
3426 3427 3428
        onFinish: ()=> {
            context.completeTransition(true)
        }    
L
leafly2021 已提交
3429
      }, () => {
C
chenhaiying 已提交
3430 3431 3432 3433 3434
        var obj : window.TranslateOptions = {
          x : 100.0,
          y : 0.0,
          z : 0.0
        }
L
leafly2021 已提交
3435 3436 3437 3438 3439 3440
        toWindow.translate(obj); // 设置动画过程中的属性转换
        console.info('toWindow translate end');
      }
    )
    console.info('complete transition end');
}
C
chenhaiying 已提交
3441
windowClass.hideWithAnimation((err, data) => {
L
leafly2021 已提交
3442 3443 3444 3445 3446 3447 3448 3449
    if (err.code) {
        console.error('Failed to show the window with animation. Cause: ' + JSON.stringify(err));
        return;
    }
    console.info('Succeeded in showing the window with animation. Data: ' + JSON.stringify(data));
})
```

G
ge-yafang 已提交
3450
## WindowStageEventType<sup>9+</sup>
L
leafly2021 已提交
3451 3452 3453

WindowStage生命周期。

3454
**模型约束:** 此接口仅可在Stage模型下使用。
G
ge-yafang 已提交
3455 3456

**系统能力:** SystemCapability.WindowManager.WindowManager.Core
L
leafly2021 已提交
3457

G
ge-yafang 已提交
3458 3459 3460 3461 3462 3463
| 名称       | 默认值 | 说明       |
| ---------- | ------ | ---------- |
| FOREGROUND | 1      | 切到前台。 |
| ACTIVE     | 2      | 获焦状态。 |
| INACTIVE   | 3      | 失焦状态。 |
| BACKGROUND | 4      | 切到后台。 |
L
leafly2021 已提交
3464 3465 3466

## WindowStage<sup>9+</sup>

G
ge-yafang 已提交
3467 3468
窗口管理器。管理各个基本窗口单元,即[Window](#window)实例。

L
leafly2021 已提交
3469 3470 3471 3472
下列API示例中都需在[onWindowStageCreate()](js-apis-application-ability.md#abilityonwindowstagecreate)函数中使用WindowStage的实例调用对应方法。

### getMainWindow<sup>9+</sup>

G
ge-yafang 已提交
3473 3474 3475 3476
getMainWindow(callback: AsyncCallback&lt;Window&gt;): void

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

3477
**模型约束:** 此接口仅可在Stage模型下使用。
G
ge-yafang 已提交
3478 3479 3480

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

L
leafly2021 已提交
3481
**参数:**
G
ge-yafang 已提交
3482 3483 3484 3485 3486

| 参数名   | 类型                                   | 必填 | 说明                                          |
| -------- | -------------------------------------- | ---- | --------------------------------------------- |
| callback | AsyncCallback&lt;[Window](#window)&gt; | 是   | 回调函数。返回当前WindowStage下的主窗口对象。 |

L
leafly2021 已提交
3487
**示例:**
G
ge-yafang 已提交
3488 3489 3490 3491 3492 3493 3494 3495 3496 3497 3498 3499 3500 3501 3502 3503 3504 3505 3506 3507

```ts
import Ability from '@ohos.application.Ability';
class myAbility extends Ability {
    onWindowStageCreate(windowStage) {
        console.log('onWindowStageCreate');
        var windowClass = null;
        windowStage.getMainWindow((err, data) => {
            if (err.code) {
                console.error('Failed to obtain the main window. Cause: ' + JSON.stringify(err));
                return;
            }
            windowClass = data;
            console.info('Succeeded in obtaining the main window. Data: ' + JSON.stringify(data));
        });
    }
}
```
### getMainWindow<sup>9+</sup>

L
leafly2021 已提交
3508 3509
getMainWindow(): Promise&lt;Window&gt;

G
ge-yafang 已提交
3510
获取该WindowStage实例下的主窗口,使用Promise异步回调。
L
leafly2021 已提交
3511

3512
**模型约束:** 此接口仅可在Stage模型下使用。
G
ge-yafang 已提交
3513

G
ge-yafang 已提交
3514
**系统能力:** SystemCapability.WindowManager.WindowManager.Core
L
leafly2021 已提交
3515

L
leafly2021 已提交
3516
**返回值:**
L
leafly2021 已提交
3517

G
ge-yafang 已提交
3518 3519 3520
| 类型                             | 说明                                             |
| -------------------------------- | ------------------------------------------------ |
| Promise&lt;[Window](#window)&gt; | Promise对象。返回当前WindowStage下的主窗口对象。 |
L
leafly2021 已提交
3521

L
leafly2021 已提交
3522
**示例:**
L
leafly2021 已提交
3523

G
ge-yafang 已提交
3524 3525 3526 3527 3528 3529 3530 3531 3532 3533 3534 3535 3536 3537 3538 3539 3540
```ts
import Ability from '@ohos.application.Ability';
class myAbility extends Ability {
    onWindowStageCreate(windowStage) {
        console.log('onWindowStageCreate');
        var windowClass = null;
        let promise = windowStage.getMainWindow();
        promise.then((data)=> {
        windowClass = data;
            console.info('Succeeded in obtaining the main window. Data: ' + JSON.stringify(data));
        }).catch((err)=>{
            console.error('Failed to obtain the main window. Cause: ' + JSON.stringify(err));
        });
    }
}
```
### createSubWindow<sup>9+</sup>
L
leafly2021 已提交
3541

G
ge-yafang 已提交
3542 3543 3544 3545
createSubWindow(name: string, callback: AsyncCallback&lt;Window&gt;): void

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

3546
**模型约束:** 此接口仅可在Stage模型下使用。
L
leafly2021 已提交
3547

G
ge-yafang 已提交
3548
**系统能力:** SystemCapability.WindowManager.WindowManager.Core
L
leafly2021 已提交
3549

L
leafly2021 已提交
3550
**参数:**
L
leafly2021 已提交
3551

G
ge-yafang 已提交
3552 3553 3554 3555
| 参数名   | 类型                                   | 必填 | 说明                                          |
| -------- | -------------------------------------- | ---- | --------------------------------------------- |
| name     | String                                 | 是   | 子窗口的名字。                                |
| callback | AsyncCallback&lt;[Window](#window)&gt; | 是   | 回调函数。返回当前WindowStage下的子窗口对象。 |
L
leafly2021 已提交
3556

L
leafly2021 已提交
3557
**示例:**
L
leafly2021 已提交
3558

G
ge-yafang 已提交
3559 3560 3561 3562 3563 3564 3565 3566
```ts
import Ability from '@ohos.application.Ability';
class myAbility extends Ability {
    onWindowStageCreate(windowStage) {
        console.log('onWindowStageCreate');
        var windowClass = null;
        windowStage.createSubWindow("mySubWindow", (err, data) => {
            if (err.code) {
3567
                console.error('Failed to create the subwindow. Cause: ' + JSON.stringify(err));
G
ge-yafang 已提交
3568 3569 3570
                return;
            }
            windowClass = data;
3571
            console.info('Succeeded in creating the subwindow. Data: ' + JSON.stringify(data));
G
ge-yafang 已提交
3572 3573 3574 3575 3576
            windowClass.resetSize(500, 1000);
        });
    }
}
```
L
leafly2021 已提交
3577 3578 3579 3580
### createSubWindow<sup>9+</sup>

createSubWindow(name: string): Promise&lt;Window&gt;

G
ge-yafang 已提交
3581
创建该WindowStage实例下的子窗口,使用Promise异步回调。
L
leafly2021 已提交
3582

3583
**模型约束:** 此接口仅可在Stage模型下使用。
G
ge-yafang 已提交
3584

G
ge-yafang 已提交
3585
**系统能力:** SystemCapability.WindowManager.WindowManager.Core
G
ge-yafang 已提交
3586

L
leafly2021 已提交
3587
**参数:**
L
leafly2021 已提交
3588

G
ge-yafang 已提交
3589 3590 3591
| 参数名 | 类型   | 必填 | 说明           |
| ------ | ------ | ---- | -------------- |
| name   | String | 是   | 子窗口的名字。 |
G
ge-yafang 已提交
3592

L
leafly2021 已提交
3593
**返回值:**
L
leafly2021 已提交
3594

G
ge-yafang 已提交
3595 3596 3597
| 类型                             | 说明                                             |
| -------------------------------- | ------------------------------------------------ |
| Promise&lt;[Window](#window)&gt; | Promise对象。返回当前WindowStage下的子窗口对象。 |
L
leafly2021 已提交
3598

L
leafly2021 已提交
3599
**示例:**
L
leafly2021 已提交
3600

G
ge-yafang 已提交
3601 3602 3603 3604 3605 3606 3607 3608 3609
```ts
import Ability from '@ohos.application.Ability';
class myAbility extends Ability {
    onWindowStageCreate(windowStage) {
        console.log('onWindowStageCreate');
        var windowClass = null;
        let promise = windowStage.createSubWindow("mySubWindow");
        promise.then((data)=> {
            windowClass = data;
3610
            console.info('Succeeded in creating the subwindow. Data: ' + JSON.stringify(data));
G
ge-yafang 已提交
3611
        }).catch((err)=>{
3612
            console.error('Failed to create the subwindow. Cause: ' + JSON.stringify(err));
G
ge-yafang 已提交
3613 3614 3615 3616 3617
        })
    }
}
```
### getSubWindow<sup>9+</sup>
L
leafly2021 已提交
3618

G
ge-yafang 已提交
3619 3620 3621 3622
getSubWindow(callback: AsyncCallback&lt;Array&lt;Window&gt;&gt;): void

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

3623
**模型约束:** 此接口仅可在Stage模型下使用。
L
leafly2021 已提交
3624

G
ge-yafang 已提交
3625
**系统能力:** SystemCapability.WindowManager.WindowManager.Core
L
leafly2021 已提交
3626

L
leafly2021 已提交
3627
**参数:**
L
leafly2021 已提交
3628

G
ge-yafang 已提交
3629 3630 3631
| 参数名   | 类型                                                | 必填 | 说明                                              |
| -------- | --------------------------------------------------- | ---- | ------------------------------------------------- |
| callback | AsyncCallback&lt;Array&lt;[Window](#window)&gt;&gt; | 是   | 回调函数。返回当前WindowStage下的所有子窗口对象。 |
L
leafly2021 已提交
3632

L
leafly2021 已提交
3633
**示例:**
L
leafly2021 已提交
3634

G
ge-yafang 已提交
3635 3636 3637 3638 3639 3640 3641 3642
```ts
import Ability from '@ohos.application.Ability';
class myAbility extends Ability {
    onWindowStageCreate(windowStage) {
        console.log('onWindowStageCreate');
        var windowClass = null;
        windowStage.getSubWindow((err, data) => {
            if (err.code) {
3643
                console.error('Failed to obtain the subwindow. Cause: ' + JSON.stringify(err));
G
ge-yafang 已提交
3644 3645 3646
                return;
            }
            windowClass = data;
3647
            console.info('Succeeded in obtaining the subwindow. Data: ' + JSON.stringify(data));
G
ge-yafang 已提交
3648 3649 3650 3651
        });
    }
}
```
L
leafly2021 已提交
3652 3653 3654 3655
### getSubWindow<sup>9+</sup>

getSubWindow(): Promise&lt;Array&lt;Window&gt;&gt;

G
ge-yafang 已提交
3656
获取该WindowStage实例下的所有子窗口,使用Promise异步回调。
L
leafly2021 已提交
3657

3658
**模型约束:** 此接口仅可在Stage模型下使用。
G
ge-yafang 已提交
3659

G
ge-yafang 已提交
3660
**系统能力:** SystemCapability.WindowManager.WindowManager.Core
G
ge-yafang 已提交
3661

L
leafly2021 已提交
3662
**返回值:**
L
leafly2021 已提交
3663

G
ge-yafang 已提交
3664 3665 3666
| 类型                                          | 说明                                                 |
| --------------------------------------------- | ---------------------------------------------------- |
| Promise&lt;Array&lt;[Window](#window)&gt;&gt; | Promise对象。返回当前WindowStage下的所有子窗口对象。 |
L
leafly2021 已提交
3667

L
leafly2021 已提交
3668
**示例:**
L
leafly2021 已提交
3669

G
ge-yafang 已提交
3670 3671 3672 3673 3674 3675 3676 3677 3678
```ts
import Ability from '@ohos.application.Ability';
class myAbility extends Ability {
    onWindowStageCreate(windowStage) {
        console.log('onWindowStageCreate');
        var windowClass = null;
        let promise = windowStage.getSubWindow();
        promise.then((data)=> {
            windowClass = data;
3679
            console.info('Succeeded in obtaining the subwindow. Data: ' + JSON.stringify(data));
G
ge-yafang 已提交
3680
        }).catch((err)=>{
3681
            console.error('Failed to obtain the subwindow. Cause: ' + JSON.stringify(err));
G
ge-yafang 已提交
3682 3683 3684 3685 3686
        })
    }
}
```
### loadContent<sup>9+</sup>
L
leafly2021 已提交
3687

G
ge-yafang 已提交
3688 3689 3690 3691
loadContent(path: string, storage: LocalStorage, callback: AsyncCallback&lt;void&gt;): void

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

3692
**模型约束:** 此接口仅可在Stage模型下使用。
L
leafly2021 已提交
3693

G
ge-yafang 已提交
3694
**系统能力:** SystemCapability.WindowManager.WindowManager.Core
G
ge-yafang 已提交
3695

L
leafly2021 已提交
3696
**参数:**
L
leafly2021 已提交
3697

G
ge-yafang 已提交
3698 3699 3700 3701 3702
| 参数名   | 类型                                            | 必填 | 说明                                                         |
| -------- | ----------------------------------------------- | ---- | ------------------------------------------------------------ |
| path     | string                                          | 是   | 设置加载页面的路径。                                         |
| storage  | [LocalStorage](../../ui/ui-ts-local-storage.md) | 是   | 存储单元,为应用程序范围内的可变状态属性和非可变状态属性提供存储。 |
| callback | AsyncCallback&lt;void&gt;                       | 是   | 回调函数。                                                   |
L
leafly2021 已提交
3703

G
ge-yafang 已提交
3704
**示例:**
L
leafly2021 已提交
3705

G
ge-yafang 已提交
3706 3707 3708
```ts
import Ability from '@ohos.application.Ability';
class myAbility extends Ability {
L
leafly2021 已提交
3709
    storage : LocalStorage
G
ge-yafang 已提交
3710 3711 3712 3713 3714 3715 3716 3717 3718 3719 3720 3721 3722 3723 3724 3725 3726
    onWindowStageCreate(windowStage) {
        this.storage = new LocalStorage();
        this.storage.setOrCreate("storageSimpleProp",121);
        console.log('onWindowStageCreate');
        windowStage.loadContent("pages/page2",this.storage,(err, data) => {
            if (err.code) {
                console.error('Failed to load the content. Cause:' + JSON.stringify(err));
                return;
            }
            console.info('Succeeded in loading the content. Data: ' + JSON.stringify(data));
        });
    }
}
```

### loadContent<sup>9+</sup>

G
ge-yafang 已提交
3727
loadContent(path: string, storage?: LocalStorage): Promise&lt;void&gt;
G
ge-yafang 已提交
3728 3729 3730

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

3731
**模型约束:** 此接口仅可在Stage模型下使用。
G
ge-yafang 已提交
3732 3733 3734

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

L
leafly2021 已提交
3735
**参数:**
G
ge-yafang 已提交
3736

G
ge-yafang 已提交
3737 3738 3739 3740
| 参数名  | 类型                                            | 必填 | 说明                                                         |
| ------- | ----------------------------------------------- | ---- | ------------------------------------------------------------ |
| path    | string                                          | 是   | 设置加载页面的路径。                                         |
| storage | [LocalStorage](../../ui/ui-ts-local-storage.md) | 否   | 存储单元,为应用程序范围内的可变状态属性和非可变状态属性提供存储。 |
G
ge-yafang 已提交
3741 3742 3743 3744 3745 3746 3747 3748 3749 3750 3751 3752

**返回值:**

| 类型                | 说明                      |
| ------------------- | ------------------------- |
| Promise&lt;void&gt; | 无返回结果的Promise对象。 |

**示例:**

```ts
import Ability from '@ohos.application.Ability';
class myAbility extends Ability {
L
leafly2021 已提交
3753
    storage : LocalStorage
G
ge-yafang 已提交
3754 3755 3756 3757 3758 3759 3760 3761 3762 3763 3764 3765 3766 3767 3768
    onWindowStageCreate(windowStage) {
        this.storage = new LocalStorage();
        this.storage.setOrCreate("storageSimpleProp",121);
        console.log('onWindowStageCreate');
        var windowClass = null;
        let promise = windowStage.loadContent("pages/page2",this.storage);
        promise.then((data)=> {
            windowClass = data;
            console.info('Succeeded in loading the content. Data: ' + JSON.stringify(data));
        }).catch((err)=>{
            console.error('Failed to load the content. Cause:' + JSON.stringify(err));
        })
    }
}
```
L
leafly2021 已提交
3769 3770 3771 3772 3773

### loadContent<sup>9+</sup>

loadContent(path: string, callback: AsyncCallback&lt;void&gt;): void

G
ge-yafang 已提交
3774
为当前WindowStage的主窗口加载具体页面内容,使用callback异步回调。
L
leafly2021 已提交
3775

3776
**模型约束:** 此接口仅可在Stage模型下使用。
G
ge-yafang 已提交
3777 3778

**系统能力:** SystemCapability.WindowManager.WindowManager.Core
L
leafly2021 已提交
3779

L
leafly2021 已提交
3780
**参数:**
L
leafly2021 已提交
3781

G
ge-yafang 已提交
3782 3783 3784 3785
| 参数名   | 类型                      | 必填 | 说明                 |
| -------- | ------------------------- | ---- | -------------------- |
| path     | string                    | 是   | 设置加载页面的路径。 |
| callback | AsyncCallback&lt;void&gt; | 是   | 回调函数。           |
G
ge-yafang 已提交
3786

L
leafly2021 已提交
3787
**示例:**
L
leafly2021 已提交
3788

G
ge-yafang 已提交
3789 3790 3791 3792 3793 3794 3795 3796 3797 3798 3799 3800 3801 3802 3803
```ts
import Ability from '@ohos.application.Ability';
class myAbility extends Ability {
    onWindowStageCreate(windowStage) {
        console.log('onWindowStageCreate');
        windowStage.loadContent("pages/page2", (err, data) => {
            if (err.code) {
                console.error('Failed to load the content. Cause:' + JSON.stringify(err));
                return;
            }
            console.info('Succeeded in loading the content. Data: ' + JSON.stringify(data));
        });
    }
}
```
G
ge-yafang 已提交
3804

L
leafly2021 已提交
3805 3806 3807 3808 3809 3810
### on('windowStageEvent')<sup>9+</sup>

on(eventType: 'windowStageEvent', callback: Callback&lt;WindowStageEventType&gt;): void

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

3811
**模型约束:** 此接口仅可在Stage模型下使用。
G
ge-yafang 已提交
3812

G
ge-yafang 已提交
3813
**系统能力:** SystemCapability.WindowManager.WindowManager.Core
G
ge-yafang 已提交
3814

L
leafly2021 已提交
3815
**参数:**
L
leafly2021 已提交
3816

G
ge-yafang 已提交
3817 3818 3819
| 参数名   | 类型                                                         | 必填 | 说明                                                         |
| -------- | ------------------------------------------------------------ | ---- | ------------------------------------------------------------ |
| type     | string                                                       | 是   | 监听事件,固定为'windowStageEvent',即WindowStage生命周期变化事件。 |
G
ge-yafang 已提交
3820
| callback | Callback&lt;[WindowStageEventType](#windowstageeventtype9)&gt; | 是   | 回调函数。返回当前的WindowStage生命周期状态。                |
L
leafly2021 已提交
3821

L
leafly2021 已提交
3822
**示例:**
L
leafly2021 已提交
3823

G
ge-yafang 已提交
3824 3825 3826 3827 3828 3829 3830 3831 3832 3833 3834
```ts
import Ability from '@ohos.application.Ability';
class myAbility extends Ability {
    onWindowStageCreate(windowStage) {
        console.log('onWindowStageCreate');
        windowStage.on('windowStageEvent', (data) => {
            console.info('Succeeded in enabling the listener for window stage event changes. Data: ' + JSON.stringify(data));
        });
    }
}
```
L
leafly2021 已提交
3835 3836 3837 3838 3839 3840 3841

### off('windowStageEvent')<sup>9+</sup>

off(eventType: 'windowStageEvent', callback?: Callback&lt;WindowStageEventType&gt;): void

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

3842
**模型约束:** 此接口仅可在Stage模型下使用。
G
ge-yafang 已提交
3843

G
ge-yafang 已提交
3844
**系统能力:** SystemCapability.WindowManager.WindowManager.Core
G
ge-yafang 已提交
3845

L
leafly2021 已提交
3846
**参数:**
L
leafly2021 已提交
3847

G
ge-yafang 已提交
3848 3849 3850
| 参数名   | 类型                                                         | 必填 | 说明                                                         |
| -------- | ------------------------------------------------------------ | ---- | ------------------------------------------------------------ |
| type     | string                                                       | 是   | 监听事件,固定为'windowStageEvent',即WindowStage生命周期变化事件。 |
G
ge-yafang 已提交
3851
| callback | Callback&lt;[WindowStageEventType](#windowstageeventtype9)&gt; | 否   | 回调函数。返回当前的WindowStage生命周期状态。                |
G
ge-yafang 已提交
3852

L
leafly2021 已提交
3853
**示例:**
L
leafly2021 已提交
3854

G
ge-yafang 已提交
3855 3856 3857 3858 3859 3860 3861 3862 3863
```ts
import Ability from '@ohos.application.Ability';
class myAbility extends Ability {
    onWindowStageCreate(windowStage) {
        console.log('onWindowStageCreate');
        windowStage.off('windowStageEvent');
    }
}
```
Q
qianlf 已提交
3864

L
leafly2021 已提交
3865 3866 3867 3868 3869 3870
### disableWindowDecor()<sup>9+</sup>

disableWindowDecor(): void

禁止窗口装饰。

3871
**模型约束:** 此接口仅可在Stage模型下使用。
L
leafly2021 已提交
3872

3873
**系统接口:** 此接口为系统接口。
L
leafly2021 已提交
3874 3875 3876

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

L
leafly2021 已提交
3877
**示例:**
L
leafly2021 已提交
3878 3879 3880 3881 3882 3883 3884 3885 3886 3887 3888 3889

```ts
import Ability from '@ohos.application.Ability';
class myAbility extends Ability {
    onWindowStageCreate(windowStage) {
        console.log('disableWindowDecor');
        windowStage.disableWindowDecor();
    }
}
```

### setShowOnLockScreen()<sup>9+</sup>
Q
qianlf 已提交
3890 3891 3892 3893

setShowOnLockScreen(showOnLockScreen: boolean): void

设置应用显示在锁屏之上。
L
leafly2021 已提交
3894

3895
**系统接口:** 此接口为系统接口。
Q
qianlf 已提交
3896

3897
**模型约束:** 此接口仅可在Stage模型下使用。
G
ge-yafang 已提交
3898

Q
qianlf 已提交
3899 3900
**系统能力:** SystemCapability.WindowManager.WindowManager.Core

L
leafly2021 已提交
3901
**参数:**
Q
qianlf 已提交
3902 3903 3904 3905 3906

| 参数名           | 类型    | 必填 | 说明                         |
| ---------------- | ------- | ---- | ---------------------------- |
| showOnLockScreen | boolean | 是   | 是否设置应用显示在锁屏之上。 |

L
leafly2021 已提交
3907
**示例:**
Q
qianlf 已提交
3908 3909

```ts
G
ge-yafang 已提交
3910
import Ability from '@ohos.application.Ability';
Q
qianlf 已提交
3911 3912 3913 3914 3915 3916 3917
class myAbility extends Ability {
    onWindowStageCreate(windowStage) {
        console.log('onWindowStageCreate');
        windowStage.setShowOnLockScreen(true);
    }
}
```
L
leafly2021 已提交
3918 3919 3920 3921
## TransitionContext<sup>9+</sup>

属性转换的上下文信息。

3922
**系统接口:** 此接口为系统接口。
L
leafly2021 已提交
3923 3924 3925 3926 3927 3928 3929 3930 3931 3932 3933 3934 3935 3936 3937 3938 3939 3940 3941 3942 3943 3944 3945 3946 3947

### toWindow<sup>9+</sup>

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

| 名称     | 参数类型          | 可读 | 可写 | 说明             |
| -------- | ----------------- | ---- | ---- | ---------------- |
| toWindow | [Window](#window) | 是   | 是   | 动画的目标窗口。 |

### completeTransition<sup>9+</sup>

completeTransition(isCompleted: boolean): void

设置属性转换的最终完成状态。该函数需要在动画函数[animateTo()](../arkui-ts/ts-explicit-animation.md)执行后设置。

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

**参数:**

| 参数名      | 类型    | 必填 | 说明                                                         |
| ----------- | ------- | ---- | ------------------------------------------------------------ |
| isCompleted | boolean | 是   | 窗口属性转换是否完成。true:完成本次转换;false:撤销本次转换。 |

**示例:**

3948
```js
L
leafly2021 已提交
3949 3950 3951 3952 3953 3954 3955 3956 3957 3958 3959
let controller = windowClass.getTransitionController();
controller.animationForShown = (context : window.TransitionContext) => {
	let toWindow = context.toWindow
 	animateTo({
    	duration: 1000, // 动画时长
        tempo: 0.5, // 播放速率
        curve: Curve.EaseInOut, // 动画曲线
        delay: 0, // 动画延迟
        iterations: 1, // 播放次数
        playMode: PlayMode.Normal, // 动画模式
      }, () => {
C
chenhaiying 已提交
3960 3961 3962 3963 3964
        var obj : window.TranslateOptions = {
          x : 100.0,
          y : 0.0,
          z : 0.0
        }
L
leafly2021 已提交
3965 3966 3967 3968 3969 3970 3971 3972 3973 3974 3975 3976 3977
        toWindow.translate(obj);
        console.info('toWindow translate end');
      }
    )
    context.completeTransition(true)
    console.info('complete transition end');
}
```

## TransitionController<sup>9+</sup>

属性转换控制器。

3978
**系统接口:** 此接口为系统接口。
L
leafly2021 已提交
3979 3980 3981 3982 3983 3984 3985 3986 3987 3988 3989 3990 3991 3992 3993 3994 3995

### animationForShown<sup>9+</sup>

animationForShown(context: TransitionContext): void

窗口显示时的自定义动画配置。

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

**参数:**

| 参数名  | 类型                                     | 必填 | 说明                 |
| ------- | ---------------------------------------- | ---- | -------------------- |
| context | [TransitionContext](#transitioncontext9) | 是   | 属性转换时的上下文。 |

**示例:**

3996
```js
L
leafly2021 已提交
3997 3998 3999 4000 4001 4002 4003 4004 4005 4006
let controller = windowClass.getTransitionController();
controller.animationForShown = (context : window.TransitionContext) => {
	let toWindow = context.toWindow
 	animateTo({
    	duration: 1000, // 动画时长
        tempo: 0.5, // 播放速率
        curve: Curve.EaseInOut, // 动画曲线
        delay: 0, // 动画延迟
        iterations: 1, // 播放次数
        playMode: PlayMode.Normal, // 动画模式
C
chenhaiying 已提交
4007 4008 4009
        onFinish: ()=> {
            context.completeTransition(true)
        }  
L
leafly2021 已提交
4010
      }, () => {
C
chenhaiying 已提交
4011 4012 4013 4014 4015
        var obj : window.TranslateOptions = {
          x : 100.0,
          y : 0.0,
          z : 0.0
        }
L
leafly2021 已提交
4016 4017 4018 4019 4020 4021 4022 4023 4024 4025 4026 4027 4028 4029 4030 4031 4032 4033 4034 4035 4036 4037 4038 4039
        toWindow.translate(obj);
        console.info('toWindow translate end');
      }
    )
    console.info('complete transition end');
}
```

### animationForHidden<sup>9+</sup>

animationForHidden(context: TransitionContext): void

窗口隐藏时的自定义动画配置。

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

**参数:**

| 参数名  | 类型                                     | 必填 | 说明                 |
| ------- | ---------------------------------------- | ---- | -------------------- |
| context | [TransitionContext](#transitioncontext9) | 是   | 属性转换时的上下文。 |

**示例:**

4040
```js
L
leafly2021 已提交
4041 4042 4043 4044 4045 4046 4047 4048 4049 4050
let controller = windowClass.getTransitionController();
controller.animationForHidden = (context : window.TransitionContext) => {
	let toWindow = context.toWindow
 	animateTo({
    	duration: 1000, // 动画时长
        tempo: 0.5, // 播放速率
        curve: Curve.EaseInOut, // 动画曲线
        delay: 0, // 动画延迟
        iterations: 1, // 播放次数
        playMode: PlayMode.Normal, // 动画模式
C
chenhaiying 已提交
4051 4052 4053
        onFinish: ()=> {
            context.completeTransition(true)
        }  
L
leafly2021 已提交
4054
      }, () => {
C
chenhaiying 已提交
4055 4056 4057 4058 4059
        var obj : window.TranslateOptions = {
          x : 100.0,
          y : 0.0,
          z : 0.0
        }
L
leafly2021 已提交
4060 4061 4062 4063 4064 4065
        toWindow.translate(obj);
        console.info('toWindow translate end');
      }
    )
    console.info('complete transition end');
}
4066
```