Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
OpenHarmony
Docs
提交
82148254
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,发现更多精彩内容 >>
未验证
提交
82148254
编写于
4月 18, 2022
作者:
O
openharmony_ci
提交者:
Gitee
4月 18, 2022
浏览文件
操作
浏览文件
下载
差异文件
!3265 同步API评审意见,修改getRecentlyUsedModules API的参数为可选参数
Merge pull request !3265 from Houdisheng/master
上级
6441fa65
8ca34424
变更
3
隐藏空白更改
内联
并排
Showing
3 changed file
with
53 addition
and
9 deletion
+53
-9
zh-cn/application-dev/device-usage-statistics/device-usage-statistics-dev-guide.md
...ice-usage-statistics/device-usage-statistics-dev-guide.md
+25
-1
zh-cn/application-dev/device-usage-statistics/device-usage-statistics-overview.md
...vice-usage-statistics/device-usage-statistics-overview.md
+1
-1
zh-cn/application-dev/reference/apis/js-apis-deviceUsageStatistics.md
...ation-dev/reference/apis/js-apis-deviceUsageStatistics.md
+27
-7
未找到文件。
zh-cn/application-dev/device-usage-statistics/device-usage-statistics-dev-guide.md
浏览文件 @
82148254
...
...
@@ -207,7 +207,7 @@ import stats from '@ohos.bundleState';
});
```
8.
查询FA使用记录。返回数量最大不超过maxNum设置的值,config.json中需要配置权限:ohos.permission.BUNDLE_ACTIVE_INFO。
8.
查询FA使用记录。返回数量最大不超过maxNum设置的值,
若不传入maxNum参数,则默认maxNum为1000。
config.json中需要配置权限:ohos.permission.BUNDLE_ACTIVE_INFO。
```js
import stats from '@ohos.bundleState'
...
...
@@ -223,6 +223,17 @@ import stats from '@ohos.bundleState';
console.log('BUNDLE_ACTIVE getRecentlyUsedModules promise failed, because: ' + err.code);
});
// 无maNum参数异步方法promise方式
stats.getRecentlyUsedModules().then( res => {
console.log('BUNDLE_ACTIVE getRecentlyUsedModules promise succeeded');
for (let i = 0; i < res.length; i++) {
console.log('BUNDLE_ACTIVE getRecentlyUsedModules promise number : ' + (i + 1));
console.log('BUNDLE_ACTIVE getRecentlyUsedModules promise result ' + JSON.stringify(res[i]));
}
}).catch( err=> {
console.log('BUNDLE_ACTIVE getRecentlyUsedModules promise failed, because: ' + err.code);
});
// 异步方法callback方式
stats.getRecentlyUsedModules(this.maxNum,(err, res) => {
if(err) {
...
...
@@ -235,5 +246,18 @@ import stats from '@ohos.bundleState';
}
}
});
// 无maNum参数异步方法callback方式
stats.getRecentlyUsedModules((err, res) => {
if(err) {
console.log('BUNDLE_ACTIVE getRecentlyUsedModules callback failed, because: ' + err.code);
} else {
console.log('BUNDLE_ACTIVE getRecentlyUsedModules callback succeeded.');
for (let i = 0; i < res.length; i++) {
console.log('BUNDLE_ACTIVE getRecentlyUsedModules callback number : ' + (i + 1));
console.log('BUNDLE_ACTIVE getRecentlyUsedModules callback result ' + JSON.stringify(res[i]));
}
}
});
```
zh-cn/application-dev/device-usage-statistics/device-usage-statistics-overview.md
浏览文件 @
82148254
...
...
@@ -18,7 +18,7 @@
4.
根据interval(日、周、月、年)类型和起止时间查询应用的使用时长。
5.
查询调用者应用的优先级群组。
6.
判断指定应用当前是否是空闲状态。
7.
查询FA使用记录。返回数量最大不超过maxNum设置的值,FA使用记录由近及远排序,maxNum最大为1000。
7.
查询FA使用记录。返回数量最大不超过maxNum设置的值,FA使用记录由近及远排序,maxNum最大为1000
,若不填写maxNum参数,则maxNum默认为1000
。
### 设备使用信息统计使用权限
-
设备使用信息统计的queryBundleActiveStates、queryBundleStateInfos、queryBundleStateInfoByInterval接口为系统api,调用前需要申请ohos.permission.BUNDLE_ACTIVE_INFO权限。
...
...
zh-cn/application-dev/reference/apis/js-apis-deviceUsageStatistics.md
浏览文件 @
82148254
...
...
@@ -417,7 +417,7 @@ getRecentlyUsedModules(maxNum: number): Promise<Array<BundleActiveModuleIn
| 参数名 | 类型 | 必填 | 说明 |
| -------- | -------- | -------- | -------- |
| maxNum | number |
是 | 返回条目的最大数量
。|
| maxNum | number |
否 | 返回条目的最大数量,最多支持1000条。若不填写,则默认为1000
。|
**返回值**
:
...
...
@@ -437,6 +437,17 @@ getRecentlyUsedModules(maxNum: number): Promise<Array<BundleActiveModuleIn
}).
catch
(
err
=>
{
console
.
log
(
'
BUNDLE_ACTIVE getRecentlyUsedModules promise failed, because:
'
+
err
.
code
);
});
// 无maxNum参数调用方式
bundleState
.
getRecentlyUsedModules
().
then
(
res
=>
{
console
.
log
(
'
BUNDLE_ACTIVE getRecentlyUsedModules promise succeeded
'
);
for
(
let
i
=
0
;
i
<
res
.
length
;
i
++
)
{
console
.
log
(
'
BUNDLE_ACTIVE getRecentlyUsedModules promise number :
'
+
(
i
+
1
));
console
.
log
(
'
BUNDLE_ACTIVE getRecentlyUsedModules promise result
'
+
JSON
.
stringify
(
res
[
i
]));
}
}).
catch
(
err
=>
{
console
.
log
(
'
BUNDLE_ACTIVE getRecentlyUsedModules promise failed, because:
'
+
err
.
code
);
});
```
## bundleState.getRecentlyUsedModules<sup>9+</sup>
...
...
@@ -453,7 +464,7 @@ getRecentlyUsedModules(maxNum: number, callback: AsyncCallback<Array<Bundl
| 参数名 | 类型 | 必填 | 说明 |
| -------- | -------- | -------- | -------- |
| maxNum | number |
是 | 返回条目的最大数量
。|
| maxNum | number |
否 | 返回条目的最大数量,最多支持1000条。若不填写,则默认为1000
。|
| callback | AsyncCallback
<
Array
<
[BundleActiveModuleInfo](#bundleactivestate)
>>
| 是 | 指定的CallBack回调方法。返回不超过maxNum条FA使用记录。|
**示例**
:
...
...
@@ -470,13 +481,24 @@ getRecentlyUsedModules(maxNum: number, callback: AsyncCallback<Array<Bundl
}
}
});
// 无maNum参数调用方式
stats
.
getRecentlyUsedModules
((
err
,
res
)
=>
{
if
(
err
)
{
console
.
log
(
'
BUNDLE_ACTIVE getRecentlyUsedModules callback failed, because:
'
+
err
.
code
);
}
else
{
console
.
log
(
'
BUNDLE_ACTIVE getRecentlyUsedModules callback succeeded.
'
);
for
(
let
i
=
0
;
i
<
res
.
length
;
i
++
)
{
console
.
log
(
'
BUNDLE_ACTIVE getRecentlyUsedModules callback number :
'
+
(
i
+
1
));
console
.
log
(
'
BUNDLE_ACTIVE getRecentlyUsedModules callback result
'
+
JSON
.
stringify
(
res
[
i
]));
}
}
});
```
## BundleActiveModuleInfo<sup>9+</sup>
FA的使用信息的属性集合。
### 属性
**系统能力**
:以下各项对应的系统能力均为SystemCapability.ResourceSchedule.UsageStatistics.App
| 参数名 | 类型 | 必填 | 说明 |
...
...
@@ -487,7 +509,7 @@ FA的使用信息的属性集合。
| abilityName | string | 是 | FA的MainAbility名。|
| appLabelId | number | 是 | FA的应用labelId。|
| labelId | number | 是 | FA所属module的labelId。|
| descriptionId | number | 是 | FA的应用descriptionId。|
| descriptionId | number | 是 | FA
所属
的应用descriptionId。|
| abilityLableId | number | 是 | FA的MainAbility labelId。|
| abilityDescriptionId | number | 是 | FA的MainAbility descriptionId。|
| abilityIconId | number | 是 | FA的MainAbility iconId。|
...
...
@@ -498,8 +520,6 @@ FA的使用信息的属性集合。
## BundleActiveFormInfo<sup>9+</sup>
FA卡片的使用信息的属性集合。
### 属性
**系统能力**
:以下各项对应的系统能力均为SystemCapability.ResourceSchedule.UsageStatistics.App
| 参数名 | 类型 | 必填 | 说明 |
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录