提交 9718e9ee 编写于 作者: V VictoriaGuo

update direction/locale/screenDensity/deviceType instruction

Signed-off-by: NVictoriaGuo <guojia2@huawei.com>
上级 710a7c17
# 资源管理
资源管理模块,根据当前configuration(语言,区域,横竖屏,mccmnc)和device capability(设备类型,分辨率)提供获取应用资源信息读取接口。
> ![icon-note.gif](public_sys-resources/icon-note.gif) **说明:**
> 本模块首批接口从API version 6开始支持。后续版本的新增接口,采用上角标单独标记接口的起始版本。
......@@ -175,6 +177,16 @@ getResourceManager(bundleName: string): Promise&lt;ResourceManager&gt;
| direction | [Direction](#direction) | 是 | 否 | 当前设备屏幕方向 |
| locale | string | 是 | 否 | 当前系统语言 |
**示例:**
```
resourceManager.getResourceManager((error, mgr) => {
mgr.getConfiguration((error, value) => {
console.log(value.direction);
console.log(value.locale);
});
});
```
## DeviceCapability
......@@ -188,6 +200,16 @@ getResourceManager(bundleName: string): Promise&lt;ResourceManager&gt;
| screenDensity | [ScreenDensity](#screendensity) | 是 | 否 | 当前设备屏幕密度 |
| deviceType | [DeviceType](#devicetype) | 是 | 否 | 当前设备类型 |
**示例:**
```
resourceManager.getResourceManager((error, mgr) => {
mgr.getDeviceCapability((error, value) => {
console.log(value.screenDensity);
console.log(value.deviceType);
});
});
```
## RawFileDescriptor<sup>8+</sup>
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册