App管理的能力

2024-01-23 12:46 更新

appManager模块提供App管理的能力,包括查询当前是否处于稳定性测试场景、查询是否为ram受限设备、获取应用程序的内存大小、获取有关运行进程的信息等。

说明

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

导入模块

  1. import appManager from '@ohos.app.ability.appManager';

appManager.isRunningInStabilityTest

static isRunningInStabilityTest(callback: AsyncCallback<boolean>): void

查询当前是否处于稳定性测试场景。

系统能力:SystemCapability.Ability.AbilityRuntime.Core

返回值:

类型

说明

AsyncCallback<boolean>

以回调方式返回接口运行结果及当前是否处于稳定性测试场景,可进行错误处理或其他自定义处理。true: 处于稳定性测试场景,false:处于非稳定性测试场景。

错误码

错误码ID

错误信息

16000050

Internal error.

以上错误码详细介绍请参考errcode-ability

示例:

  1. import appManager from '@ohos.app.ability.appManager';
  2. appManager.isRunningInStabilityTest((err, flag) => {
  3. if (err.code !== 0) {
  4. console.log('isRunningInStabilityTest faile, err: ' + JSON.stringify(err));
  5. } else {
  6. console.log('The result of isRunningInStabilityTest is:' + JSON.stringify(flag));
  7. }
  8. });

appManager.isRunningInStabilityTest

static isRunningInStabilityTest(): Promise<boolean>

查询当前是否处于稳定性测试场景。

系统能力:SystemCapability.Ability.AbilityRuntime.Core

返回值:

类型

说明

Promise<boolean>

以Promise方式返回接口运行结果及当前是否处于稳定性测试场景,可进行错误处理或其他自定义处理。true: 处于稳定性测试场景,false:处于非稳定性测试场景。

错误码

错误码ID

错误信息

16000050

Internal error.

以上错误码详细介绍请参考errcode-ability

示例:

  1. import appManager from '@ohos.app.ability.appManager';
  2. appManager.isRunningInStabilityTest().then((flag) => {
  3. console.log('The result of isRunningInStabilityTest is:' + JSON.stringify(flag));
  4. }).catch((error) => {
  5. console.log('error:' + JSON.stringify(error));
  6. });

appManager.isRamConstrainedDevice

isRamConstrainedDevice(): Promise<boolean>;

查询是否为ram受限设备。

系统能力:SystemCapability.Ability.AbilityRuntime.Core

返回值:

类型

说明

Promise<boolean>

以Promise方式返回接口运行结果及当前设备是否为ram受限设备,可进行错误处理或其他自定义处理。true:当前设备为ram受限设备,false:当前设备为非ram受限设备。

错误码

错误码ID

错误信息

16000050

Internal error.

以上错误码详细介绍请参考errcode-ability

示例:

  1. import appManager from '@ohos.app.ability.appManager';
  2. appManager.isRamConstrainedDevice().then((data) => {
  3. console.log('The result of isRamConstrainedDevice is:' + JSON.stringify(data));
  4. }).catch((error) => {
  5. console.log('error:' + JSON.stringify(error));
  6. });

appManager.isRamConstrainedDevice

isRamConstrainedDevice(callback: AsyncCallback<boolean>): void;

查询是否为ram受限设备。

系统能力:SystemCapability.Ability.AbilityRuntime.Core

返回值:

类型

说明

AsyncCallback<boolean>

以回调方式返回接口运行结果及当前设备是否为ram受限设备,可进行错误处理或其他自定义处理。true:当前设备为ram受限设备,false:当前设备为非ram受限设备。

错误码

错误码ID

错误信息

16000050

Internal error.

以上错误码详细介绍请参考errcode-ability

示例:

  1. import appManager from '@ohos.app.ability.appManager';
  2. appManager.isRamConstrainedDevice((err, data) => {
  3. if (err.code !== 0) {
  4. console.log('isRamConstrainedDevice faile, err: ' + JSON.stringify(err));
  5. } else {
  6. console.log('The result of isRamConstrainedDevice is:' + JSON.stringify(data));
  7. }
  8. });

appManager.getAppMemorySize

getAppMemorySize(): Promise<number>;

获取应用程序的内存大小。

系统能力:SystemCapability.Ability.AbilityRuntime.Core

返回值:

类型

说明

Promise<number>

以Promise方式返回接口运行结果及应用程序内存大小,可进行错误处理或其他自定义处理。

错误码

错误码ID

错误信息

16000050

Internal error.

以上错误码详细介绍请参考errcode-ability

示例:

  1. import appManager from '@ohos.app.ability.appManager';
  2. appManager.getAppMemorySize().then((data) => {
  3. console.log('The size of app memory is:' + JSON.stringify(data));
  4. }).catch((error) => {
  5. console.log('error:' + JSON.stringify(error));
  6. });

appManager.getAppMemorySize

getAppMemorySize(callback: AsyncCallback<number>): void;

获取应用程序的内存大小。

系统能力:SystemCapability.Ability.AbilityRuntime.Core

返回值:

类型

说明

AsyncCallback<number>

以回调方式返回接口运行结果及应用程序内存大小,可进行错误处理或其他自定义处理。

错误码

错误码ID

错误信息

16000050

Internal error.

以上错误码详细介绍请参考errcode-ability

示例:

  1. import appManager from '@ohos.app.ability.appManager';
  2. appManager.getAppMemorySize((err, data) => {
  3. if (err.code !== 0) {
  4. console.log('getAppMemorySize faile, err: ' + JSON.stringify(err));
  5. } else {
  6. console.log('The size of app memory is:' + JSON.stringify(data));
  7. }
  8. });

appManager.getRunningProcessInformation

getRunningProcessInformation(): Promise<Array<ProcessInformation>>;

获取有关运行进程的信息。

需要权限:ohos.permission.GET_RUNNING_INFO

系统能力:SystemCapability.Ability.AbilityRuntime.Core

返回值:

类型

说明

Promise<Array<ProcessInformation>>

以Promise方式返回接口运行结果及有关运行进程的信息,可进行错误处理或其他自定义处理。

错误码

错误码ID

错误信息

16000050

Internal error.

以上错误码详细介绍请参考errcode-ability

示例:

  1. import appManager from '@ohos.app.ability.appManager';
  2. appManager.getRunningProcessInformation().then((data) => {
  3. console.log('The running process information is:' + JSON.stringify(data));
  4. }).catch((error) => {
  5. console.log('error:' + JSON.stringify(error));
  6. });

appManager.getRunningProcessInformation9+

getRunningProcessInformation(callback: AsyncCallback<Array<ProcessInformation>>): void;

获取有关运行进程的信息。

需要权限:ohos.permission.GET_RUNNING_INFO

系统能力:SystemCapability.Ability.AbilityRuntime.Core

返回值:

类型

说明

AsyncCallback<Array<ProcessInformation>>

以回调方式返回接口运行结果及有关运行进程的信息,可进行错误处理或其他自定义处理。

错误码

错误码ID

错误信息

16000050

Internal error.

以上错误码详细介绍请参考errcode-ability

示例:

  1. import appManager from '@ohos.app.ability.appManager';
  2. appManager.getRunningProcessInformation((err, data) => {
  3. if (err.code !== 0) {
  4. console.log('getRunningProcessInformation faile, err: ' + JSON.stringify(err));
  5. } else {
  6. console.log('The process running information is:' + JSON.stringify(data));
  7. }
  8. });
以上内容是否对您有帮助:
在线笔记
App下载
App下载

扫描二维码

下载编程狮App

公众号
微信公众号

编程狮公众号