未验证 提交 6e89dc06 编写于 作者: O openharmony_ci 提交者: Gitee

!14600 翻译完成:13865 一致性扫描问题修改

Merge pull request !14600 from wusongqing/TR13865
# @system.app (Application Context) # @system.app (Application Context)
> **NOTE** > **NOTE**
>
> - The APIs of this module are no longer maintained since API version 7. You are advised to use the new APIs. > - The APIs of this module are no longer maintained since API version 7. You are advised to use the new APIs.
> >
> - The initial APIs of this module are supported since API version 3. Newly added APIs will be marked with a superscript to indicate their earliest API version. > - The initial APIs of this module are supported since API version 3. Newly added APIs will be marked with a superscript to indicate their earliest API version.
...@@ -20,9 +21,7 @@ getInfo(): AppResponse ...@@ -20,9 +21,7 @@ getInfo(): AppResponse
Obtains the declared information in the **config.json** file of an application. Obtains the declared information in the **config.json** file of an application.
> **NOTE** You are advised to use [@ohos.bundle](js-apis-Bundle.md) since API version 7.
>
> You are advised to use [@ohos.bundle](js-apis-Bundle.md) since API version 7.
**System capability**: SystemCapability.ArkUI.ArkUI.Lite **System capability**: SystemCapability.ArkUI.ArkUI.Lite
...@@ -34,14 +33,14 @@ Obtains the declared information in the **config.json** file of an application. ...@@ -34,14 +33,14 @@ Obtains the declared information in the **config.json** file of an application.
**Example** **Example**
```ts ```ts
export default { export default {
getInfo() { getInfo() {
let info = app.getInfo() let info = app.getInfo()
console.log(JSON.stringify(info)) console.log(JSON.stringify(info))
} }
} }
``` ```
## app.terminate ## app.terminate
...@@ -49,43 +48,38 @@ terminate(): void ...@@ -49,43 +48,38 @@ terminate(): void
Terminates the current ability. Terminates the current ability.
> **NOTE** You are advised to use [@ohos.ability.featureAbility](js-apis-ability-featureAbility.md) since API version 7.
>
> You are advised to use [@ohos.ability.featureAbility](js-apis-ability-featureAbility.md) since API version 7.
**System capability**: SystemCapability.ArkUI.ArkUI.Lite **System capability**: SystemCapability.ArkUI.ArkUI.Lite
**Example** **Example**
```ts ```ts
export default { export default {
terminate() { terminate() {
app.terminate() app.terminate()
} }
} }
``` ```
## app.requestFullWindow ## app.requestFullWindow
requestFullWindow(options?: RequestFullWindowOptions): void requestFullWindow(options?: RequestFullWindowOptions): void
Requests the application to run in full window. You can call this API when the FA runs in a non-full window, for example, semi-modal FA. This API is invalid for an application already in full-window mode. Requests the application to run in full window. You can call this API when the FA runs in a non-full window, for example, semi-modal FA. This API is invalid for an application already in full-window mode.
This is a system API and cannot be called by third-party applications. You are advised to use [@ohos.window](js-apis-window.md) since API version 7.
> **NOTE**
>
> You are advised to use [@ohos.window](js-apis-window.md) since API version 7.
**System capability**: SystemCapability.ArkUI.ArkUI.Full **System capability**: SystemCapability.ArkUI.ArkUI.Full
**Parameters** **Parameters**
| Name| Type| Mandatory| Description| | Name| Type| Mandatory| Description|
| -------- | -------- | -------- | -------- | | -------- | -------- | -------- | -------- |
| options | [RequestFullWindowOptions](#requestfullwindowoptions) | No| Duration for transition from the non-full window to the full window, in milliseconds. By default, the value is in direct proportion to the distance between the non-full window and the full window.| | options | [RequestFullWindowOptions](#requestfullwindowoptions) | No| Duration for transition from the non-full window to the full window, in milliseconds. By default, the value is in direct proportion to the distance between the non-full window and the full window.|
**Example** **Example**
```ts ```ts
export default { export default {
requestFullWindow() { requestFullWindow() {
app.requestFullWindow({ app.requestFullWindow({
...@@ -93,7 +87,7 @@ export default { ...@@ -93,7 +87,7 @@ export default {
}) })
} }
} }
``` ```
## app.setImageCacheCount<sup>7+</sup> ## app.setImageCacheCount<sup>7+</sup>
...@@ -104,13 +98,14 @@ Sets the maximum number of decoded images that can be cached in the memory to sp ...@@ -104,13 +98,14 @@ Sets the maximum number of decoded images that can be cached in the memory to sp
**System capability**: SystemCapability.ArkUI.ArkUI.Full **System capability**: SystemCapability.ArkUI.ArkUI.Full
**Parameters** **Parameters**
| Name| Type| Mandatory| Description| | Name| Type| Mandatory| Description|
| -------- | -------- | -------- | -------- | | -------- | -------- | -------- | -------- |
| value | number | No| Number of decoded images that are cached in the memory.| | value | number | Yes| Number of decoded images that are cached in the memory.|
**Example** **Example**
```ts ```ts
// app.ets // app.ets
import app from '@system.app' import app from '@system.app'
...@@ -123,7 +118,7 @@ export default { ...@@ -123,7 +118,7 @@ export default {
console.info('Application onDestroy') console.info('Application onDestroy')
}, },
} }
``` ```
## app.setImageRawDataCacheSize<sup>7+</sup> ## app.setImageRawDataCacheSize<sup>7+</sup>
...@@ -134,13 +129,14 @@ Sets the maximum size (in bytes) of the image data cached in the memory before d ...@@ -134,13 +129,14 @@ Sets the maximum size (in bytes) of the image data cached in the memory before d
**System capability**: SystemCapability.ArkUI.ArkUI.Full **System capability**: SystemCapability.ArkUI.ArkUI.Full
**Parameters** **Parameters**
| Name| Type| Mandatory| Description| | Name| Type| Mandatory| Description|
| -------- | -------- | -------- | -------- | | -------- | -------- | -------- | -------- |
| value | number | No| Size of the image data cached before decoding, in bytes.| | value | number | Yes| Size of the image data cached before decoding, in bytes.|
**Example** **Example**
```ts ```ts
// app.ets // app.ets
import app from '@system.app' import app from '@system.app'
...@@ -154,7 +150,7 @@ export default { ...@@ -154,7 +150,7 @@ export default {
console.info('Application onDestroy') console.info('Application onDestroy')
}, },
} }
``` ```
## app.setImageFileCacheSize<sup>7+</sup> ## app.setImageFileCacheSize<sup>7+</sup>
...@@ -165,13 +161,14 @@ Sets the maximum size of the image file cache (in bytes) to speed up the loading ...@@ -165,13 +161,14 @@ Sets the maximum size of the image file cache (in bytes) to speed up the loading
**System capability**: SystemCapability.ArkUI.ArkUI.Full **System capability**: SystemCapability.ArkUI.ArkUI.Full
**Parameters** **Parameters**
| Name| Type| Mandatory| Description| | Name| Type| Mandatory| Description|
| -------- | -------- | -------- | -------- | | -------- | -------- | -------- | -------- |
| value | number | No| Size of the image file cache, in bytes.| | value | number | Yes| Size of the image file cache, in bytes.|
**Example** **Example**
```ts ```ts
// app.ets // app.ets
import app from '@system.app' import app from '@system.app'
...@@ -185,7 +182,7 @@ export default { ...@@ -185,7 +182,7 @@ export default {
console.info('Application onDestroy') console.info('Application onDestroy')
}, },
} }
``` ```
## AppResponse ## AppResponse
...@@ -200,6 +197,20 @@ Defines the application response information. ...@@ -200,6 +197,20 @@ Defines the application response information.
| versionName | string | Yes| Application version name.<br> **System capability**: SystemCapability.ArkUI.ArkUI.Lite| | versionName | string | Yes| Application version name.<br> **System capability**: SystemCapability.ArkUI.ArkUI.Lite|
| versionCode | number | Yes| Application version number.<br> **System capability**: SystemCapability.ArkUI.ArkUI.Lite| | versionCode | number | Yes| Application version number.<br> **System capability**: SystemCapability.ArkUI.ArkUI.Lite|
## ScreenOnVisible<sup>(deprecated)</sup>
screenOnVisible(options?: ScreenOnVisibleOptions)
Defines whether to keep the application visible when the screen is woken up.
This API is deprecated since API Version 8.
**System capability**: SystemCapability.ArkUI.ArkUI.Full
| Name| Type| Mandatory| Description|
| -------- | -------- | -------- |-------- |
| options | ScreenOnVisibleOptions | No| With keep-alive, the system is prevented from returning to the home screen when the screen is locked, so that the application is visible when the screen is woken up. |
## ScreenOnVisibleOptions ## ScreenOnVisibleOptions
Defines the options of the visible interface on the screen. Defines the options of the visible interface on the screen.
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册