AbilityStateData (System API)

The AbilityStateData module defines the ability state information, which can be obtained through the onAbilityStateChanged lifecycle callback of ApplicationStateObserver. The callback can be invoked after a lifecycle change listener is registered through registerApplicationStateObserver.

NOTE

The initial APIs of this module are supported since API version 8. Newly added APIs will be marked with a superscript to indicate their earliest API version. The APIs provided by this module are system APIs.

Modules to Import

import appManager from '@ohos.application.appManager';

Attributes

System capability: SystemCapability.Ability.AbilityRuntime.Core

System API: This is a system API and cannot be called by third-party applications.

Name Type Readable Writable Description
pid number Yes No Process ID.
bundleName string Yes No Bundle name.
abilityName string Yes No Ability name.
uid number Yes No User ID.
state number Yes No Ability state.
moduleName9+ string Yes No Name of the HAP file to which the ability belongs.
abilityType number Yes No Ability type, which can be page or service.

Ability States

Value State Description
0 ABILITY_STATE_CREATE The ability is being created.
1 ABILITY_STATE_READY The ability has been created.
2 ABILITY_STATE_FOREGROUND The ability is running in the foreground.
3 ABILITY_STATE_FOCUS The ability has focus.
4 ABILITY_STATE_BACKGROUND The ability is running in the background.
5 ABILITY_STATE_TERMINATED The ability is terminated.
8 ABILITY_STATE_CONNECTED The background service is connected to the client.
9 ABILITY_STATE_DISCONNECTED The background service is disconnected from the client.

Ability Types

Value State Description
0 UNKNOWN Unknown type.
1 PAGE Ability that has the UI.
2 SERVICE Ability that provides the background service.