Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
OpenHarmony
Docs
提交
d942f07b
D
Docs
项目概览
OpenHarmony
/
Docs
大约 1 年 前同步成功
通知
159
Star
292
Fork
28
代码
文件
提交
分支
Tags
贡献者
分支图
Diff
Issue
0
列表
看板
标记
里程碑
合并请求
0
Wiki
0
Wiki
分析
仓库
DevOps
项目成员
Pages
D
Docs
项目概览
项目概览
详情
发布
仓库
仓库
文件
提交
分支
标签
贡献者
分支图
比较
Issue
0
Issue
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
Pages
分析
分析
仓库分析
DevOps
Wiki
0
Wiki
成员
成员
收起侧边栏
关闭侧边栏
动态
分支图
创建新Issue
提交
Issue看板
体验新版 GitCode,发现更多精彩内容 >>
提交
d942f07b
编写于
8月 08, 2023
作者:
G
geraltxu
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
异步接口整改文档修改
Signed-off-by:
N
xufanghan
<
xufanghan@huawei.com
>
上级
ef4ad868
变更
2
隐藏空白更改
内联
并排
Showing
2 changed file
with
214 addition
and
11 deletion
+214
-11
zh-cn/application-dev/device-usage-statistics/device-usage-statistics-use-guide.md
...ice-usage-statistics/device-usage-statistics-use-guide.md
+18
-0
zh-cn/application-dev/reference/apis/js-apis-resourceschedule-deviceUsageStatistics.md
...ce/apis/js-apis-resourceschedule-deviceUsageStatistics.md
+196
-11
未找到文件。
zh-cn/application-dev/device-usage-statistics/device-usage-statistics-use-guide.md
浏览文件 @
d942f07b
...
...
@@ -21,9 +21,12 @@ import usageStatistics from '@ohos.resourceschedule.usageStatistics';
| function queryBundleStatsInfoByInterval(byInterval: IntervalType, begin: number, end: number, callback: AsyncCallback
<
Array
<
BundleStatsInfo
>>
): void | 通过指定时间段间隔(天、周、月、年)查询应用使用时长统计信息。 |
| function queryAppGroup(callback: AsyncCallback
<
number
>
): void | 查询当前应用的使用优先级群组。callback形式。 |
| function queryAppGroup(): Promise
<
number
>
; | 查询当前应用的使用优先级群组。promise形式。 |
|function queryAppGroupSync(): number; | 查询当前应用的使用优先级群组。同步接口。|
| function queryAppGroup(bundleName : string, callback: AsyncCallback
<
number
>
): void | 查询指定应用的使用优先级群组。callback形式。 |
| function queryAppGroup(bundleName : string): Promise
<
number
>
; | 查询当前调用者应用或者指定应用的使用优先级群组。promise形式。 |
|function queryAppGroupSync(bundleName: string): number; | 查询当前调用者应用或者指定应用的使用优先级群组。同步接口。|
| function isIdleState(bundleName: string, callback: AsyncCallback
<
boolean
>
): void | 判断指定Bundle Name的应用当前是否是空闲状态。 |
|function isIdleStateSync(bundleName: string): boolean; | 判断指定Bundle Name的应用当前是否是空闲状态,同步接口。 |
| function queryModuleUsageRecords(callback: AsyncCallback
<
HapModuleInfo
>
): void | 查询FA使用记录,返回不超过1000条FA使用记录。 |
| function queryModuleUsageRecords(maxNum: number, callback: AsyncCallback
<
HapModuleInfo
>
): void | 根据maxNum,查询FA使用记录,返回不超过maxNum条FA使用记录。 maxNum不超过1000|
| function queryNotificationEventStats(begin: number, end: number, callback: AsyncCallback
<
Array
<
DeviceEventStats
>>
): void | 通过指定起始和结束时间查询所有应用的通知次数。 |
...
...
@@ -225,6 +228,14 @@ import usageStatistics from '@ohos.resourceschedule.usageStatistics';
} catch (error) {
console.log('BUNDLE_ACTIVE queryAppGroup throw error, code is: ' + error.code + ',message is: ' + error.message);
}
//同步方式
try{
var priorityGroup = usageStatistics.queryAppGroupSync();
} catch (error) {
console.log('BUNDLE_ACTIVE queryAppGroup throw error, code is: ' + error.code + ',message is: ' + error.message);
}
```
7.
判断指定Bundle Name的应用当前是否是空闲状态,需要配置ohos.permission.BUNDLE_ACTIVE_INFO权限。
...
...
@@ -255,6 +266,13 @@ import usageStatistics from '@ohos.resourceschedule.usageStatistics';
} catch(error) {
console.log('BUNDLE_ACTIVE isIdleState throw error, code is: ' + error.code + ',message is: ' + error.message);
}
//同步方式
try{
var isIdleState = usageStatistics.isIdleStateSync("com.ohos.camera");
} catch(error) {
console.log('BUNDLE_ACTIVE isIdleState throw error, code is: ' + error.code + ',message is: ' + error.message);
}
```
8.
查询FA使用记录。返回数量最大不超过maxNum设置的值,若不传入maxNum参数,则默认maxNum为1000, 需要配置ohos.permission.BUNDLE_ACTIVE_INFO权限。
...
...
zh-cn/application-dev/reference/apis/js-apis-resourceschedule-deviceUsageStatistics.md
浏览文件 @
d942f07b
...
...
@@ -31,7 +31,102 @@ import usageStatistics from '@ohos.resourceschedule.usageStatistics'
## usageStatistics.isIdleState
isIdleState(bundleName: string): boolean
isIdleState(bundleName: string, callback: AsyncCallback
<
boolean
>
): void
判断指定bundleName的应用当前是否是空闲状态,三方应用只能查询自身的空闲状态,使用Callback形式返回。
**需要权限**
:ohos.permission.BUNDLE_ACTIVE_INFO
**系统能力**
:SystemCapability.ResourceSchedule.UsageStatistics.AppGroup
**系统API**
:此接口为系统接口。
**参数**
:
| 参数名 | 类型 | 必填 | 说明 |
| ---------- | ---------------------------- | ---- | ---------------------------------------- |
| bundleName | string | 是 | 应用的bundleName。 |
| callback | AsyncCallback
<
boolean
>
| 是 | 指定的callback回调方法。如果指定的bundleName有效,则返回指定bundleName的应用当前是否是空闲状态;否则返回null。 |
**错误码**
:
以下错误码的详细介绍请参见
[
设备信息使用统计错误码
](
../errorcodes/errorcode-DeviceUsageStatistics.md
)
。
| 错误码ID | 错误信息 |
| ---------- | ---------------------------- |
| 10000001 | Memory operation failed. |
| 10000002 | Parcel operation failed. |
| 10000003 | System service operation failed. |
| 10000004 | IPC failed. |
| 10000006 | Failed to get the application information. |
**示例**
:
```
js
try
{
usageStatistics
.
isIdleState
(
"
com.ohos.camera
"
,
(
err
,
res
)
=>
{
if
(
err
)
{
console
.
log
(
'
BUNDLE_ACTIVE isIdleState callback failed. code is:
'
+
err
.
code
+
'
,message is:
'
+
err
.
message
);
}
else
{
console
.
log
(
'
BUNDLE_ACTIVE isIdleState callback succeeded, result:
'
+
JSON
.
stringify
(
res
));
}
});
}
catch
(
error
)
{
console
.
log
(
'
BUNDLE_ACTIVE isIdleState throw error, code is:
'
+
error
.
code
+
'
,message is:
'
+
error
.
message
);
}
```
## usageStatistics.isIdleState
isIdleState(bundleName: string): Promise
<
boolean
>
判断指定bundleName的应用当前是否是空闲状态,三方应用只能查询自身的空闲状态,使用Promise形式返回。
**需要权限**
:ohos.permission.BUNDLE_ACTIVE_INFO
**系统能力**
:SystemCapability.ResourceSchedule.UsageStatistics.AppGroup
**系统API**
:此接口为系统接口。
**参数**
:
| 参数名 | 类型 | 必填 | 说明 |
| ---------- | ------ | ---- | -------------- |
| bundleName | string | 是 | 应用的bundleName。 |
**返回值**
:
| 类型 | 说明 |
| ---------------------- | ---------------------------------------- |
| Promise
<
boolean
>
| 指定的Promise回调方法。如果指定的bundleName有效,则返回指定bundleName的应用当前是否是空闲状态;否则返回null。 |
**错误码**
:
以下错误码的详细介绍请参见
[
设备信息使用统计错误码
](
../errorcodes/errorcode-DeviceUsageStatistics.md
)
。
| 错误码ID | 错误信息 |
| ---------- | ---------------------------- |
| 10000001 | Memory operation failed. |
| 10000002 | Parcel operation failed. |
| 10000003 | System service operation failed. |
| 10000004 | IPC failed. |
| 10000006 | Failed to get the application information. |
**示例**
:
```
js
try
{
usageStatistics
.
isIdleState
(
"
com.ohos.camera
"
).
then
(
res
=>
{
console
.
log
(
'
BUNDLE_ACTIVE isIdleState promise succeeded, result:
'
+
JSON
.
stringify
(
res
));
}).
catch
(
err
=>
{
console
.
log
(
'
BUNDLE_ACTIVE isIdleState promise failed. code is:
'
+
err
.
code
+
'
,message is:
'
+
err
.
message
);
});
}
catch
(
error
)
{
console
.
log
(
'
BUNDLE_ACTIVE isIdleState throw error, code is:
'
+
error
.
code
+
'
,message is:
'
+
error
.
message
);
}
```
## usageStatistics.isIdleStateSync<sup>10+<sup>
isIdleStateSync(bundleName: string): boolean
判断指定bundleName的应用当前是否是空闲状态,三方应用只能查询自身的空闲状态。
...
...
@@ -51,7 +146,7 @@ isIdleState(bundleName: string): boolean
| 类型 | 说明 |
| ---------------------- | ---------------------------------------- |
| boolean | 如果指定的bundleName有效,
则返回指定bundleName的应用当前是否是空闲状态
。 |
| boolean | 如果指定的bundleName有效,
返回true则表示空闲状态,false则非空闲
。 |
**错误码**
:
...
...
@@ -68,7 +163,7 @@ isIdleState(bundleName: string): boolean
**示例**
:
```
js
try
{
var
isIdleState
=
usageStatistics
.
isIdleState
(
"
com.ohos.camera
"
);
var
isIdleState
=
usageStatistics
.
isIdleState
Sync
(
"
com.ohos.camera
"
);
}
catch
(
error
)
{
console
.
log
(
'
BUNDLE_ACTIVE isIdleState throw error, code is:
'
+
error
.
code
+
'
,message is:
'
+
error
.
message
);
}
...
...
@@ -76,9 +171,9 @@ isIdleState(bundleName: string): boolean
## usageStatistics.queryAppGroup
queryAppGroup():
number
;
queryAppGroup():
Promise
<
number
>
;
查询当前应用的优先级分组。返回其应用分组。
查询当前应用的优先级分组。
使用Promise形式
返回其应用分组。
**系统能力**
:SystemCapability.ResourceSchedule.UsageStatistics.AppGroup
...
...
@@ -88,7 +183,7 @@ queryAppGroup(): number;
| 类型 | 说明 |
| --------------- | --------------------------- |
|
number |
返回查询的应用分组结果。 |
|
Promise
<
number
>
| 指定的Promise回调方法。
返回查询的应用分组结果。 |
**错误码**
:
...
...
@@ -108,7 +203,11 @@ queryAppGroup(): number;
```
javascript
try
{
var
priorityGroup
=
usageStatistics
.
queryAppGroup
();
usageStatistics
.
queryAppGroup
().
then
(
res
=>
{
console
.
log
(
'
BUNDLE_ACTIVE queryAppGroup promise succeeded. result:
'
+
JSON
.
stringify
(
res
));
}).
catch
(
err
=>
{
console
.
log
(
'
BUNDLE_ACTIVE queryAppGroup promise failed. code is:
'
+
err
.
code
+
'
,message is:
'
+
err
.
message
);
});
}
catch
(
error
)
{
console
.
log
(
'
BUNDLE_ACTIVE queryAppGroup throw error, code is:
'
+
error
.
code
+
'
,message is:
'
+
error
.
message
);
}
...
...
@@ -116,9 +215,95 @@ queryAppGroup(): number;
## usageStatistics.queryAppGroup
queryAppGroup(bundleName: string): number
queryAppGroup(callback: AsyncCallback
<
number
>
): void
查询当前应用的优先级分组。使用callback形式返回其应用分组。
**系统能力**
:SystemCapability.ResourceSchedule.UsageStatistics.AppGroup
**系统API**
:此接口为系统接口。
**参数**
:
| 参数名 | 类型 | 必填 | 说明 |
| -------- | --------------------- | ---- | -------------------------- |
| callback | AsyncCallback
<
number
>
| 是 | 指定的CallBack回调方法。返回查询的应用分组。 |
**错误码**
:
以下错误码的详细介绍请参见
[
设备信息使用统计错误码
](
../errorcodes/errorcode-DeviceUsageStatistics.md
)
。
| 错误码ID | 错误信息 |
| ---------- | ---------------------------- |
| 10000001 | Memory operation failed. |
| 10000002 | Parcel operation failed. |
| 10000003 | System service operation failed. |
| 10000004 | IPC failed. |
| 10000005 | Application is not installed. |
| 10000006 | Failed to get the application information. |
| 10100002 | Failed to get the application group information. |
**示例**
:
```
javascript
try
{
usageStatistics
.
queryAppGroup
((
err
,
res
)
=>
{
if
(
err
)
{
console
.
log
(
'
BUNDLE_ACTIVE queryAppGroup callback failed. code is:
'
+
err
.
code
+
'
,message is:
'
+
err
.
message
);
}
else
{
console
.
log
(
'
BUNDLE_ACTIVE queryAppGroup callback succeeded. result:
'
+
JSON
.
stringify
(
res
));
}
});
}
catch
(
error
)
{
console
.
log
(
'
BUNDLE_ACTIVE queryAppGroup throw error, code is:
'
+
error
.
code
+
'
,message is:
'
+
error
.
message
);
}
```
## usageStatistics.queryAppGroupSync<sup>10+<sup>
queryAppGroupSync(): number;
查询当前应用的优先级分组。
**系统能力**
:SystemCapability.ResourceSchedule.UsageStatistics.AppGroup
**系统API**
:此接口为系统接口。
**返回值**
:
| 类型 | 说明 |
| --------------- | --------------------------- |
| number | 返回当前应用优先级分组结果。 |
**错误码**
:
以下错误码的详细介绍请参见
[
设备信息使用统计错误码
](
../errorcodes/errorcode-DeviceUsageStatistics.md
)
。
| 错误码ID | 错误信息 |
| ---------- | ---------------------------- |
| 10000001 | Memory operation failed. |
| 10000002 | Parcel operation failed. |
| 10000003 | System service operation failed. |
| 10000004 | IPC failed. |
| 10000005 | Application is not installed. |
| 10000006 | Failed to get the application information. |
| 10100002 | Failed to get the application group information. |
**示例**
:
```
javascript
try
{
var
priorityGroup
=
usageStatistics
.
queryAppGroupSync
();
}
catch
(
error
)
{
console
.
log
(
'
BUNDLE_ACTIVE queryAppGroup throw error, code is:
'
+
error
.
code
+
'
,message is:
'
+
error
.
message
);
}
```
## usageStatistics.queryAppGroupSync<sup>10+<sup>
queryAppGroupSync(bundleName: string): number
查询指定
应用的优先级分组。返回其应用
分组。
查询指定
bundleName应用的优先级
分组。
**系统能力**
:SystemCapability.ResourceSchedule.UsageStatistics.AppGroup
...
...
@@ -134,7 +319,7 @@ queryAppGroup(bundleName: string): number
| 类型 | 说明 |
| --------------- | --------------------------- |
| number | 返回
查询的应用
分组结果。 |
| number | 返回
指定bundleName应用优先级
分组结果。 |
**错误码**
:
...
...
@@ -154,7 +339,7 @@ queryAppGroup(bundleName: string): number
```
javascript
try
{
var
priorityGroup
=
usageStatistics
.
queryAppGroup
(
"
com.ohos.camera
"
);
var
priorityGroup
=
usageStatistics
.
queryAppGroup
Sync
(
"
com.ohos.camera
"
);
}
catch
(
error
)
{
console
.
log
(
'
BUNDLE_ACTIVE queryAppGroup throw error, code is:
'
+
error
.
code
+
'
,message is:
'
+
error
.
message
);
}
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录