js-apis-launcherBundleManager.md 15.4 KB
Newer Older
Z
zengyawen 已提交
1
# @ohos.bundle.launcherBundleManager (launcherBundleManager模块)
2 3 4

本模块支持launcher应用所需的查询能力,支持[LauncherAbilityInfo](js-apis-bundleManager-launcherAbilityInfo.md)[ShortcutInfo](js-apis-bundleManager-shortcutInfo.md)信息的查询。

Z
zhaogan 已提交
5
> **说明:**
6 7 8 9 10
>
> 本模块首批接口从API version 9开始支持。后续版本的新增接口,采用上角标单独标记接口的起始版本。

## 导入模块

Z
zhaogan 已提交
11
```ts
12 13 14 15
import launcherBundleManager from '@ohos.bundle.launcherBundleManager';
```


Z
zhaogan 已提交
16
## launcherBundlemanager.getLauncherAbilityInfo<sup>9+</sup>
17 18 19 20 21 22 23 24 25 26 27 28 29

getLauncherAbilityInfo(bundleName: string, userId: number, callback: AsyncCallback<Array\<[LauncherAbilityInfo](js-apis-bundleManager-launcherAbilityInfo.md)>>) : void;

查询指定bundleName及用户的[LauncherAbilityInfo](js-apis-bundleManager-launcherAbilityInfo.md)

**需要权限:** ohos.permission.GET_BUNDLE_INFO_PRIVILEGED

**系统接口:** 此接口为系统接口

**系统能力:** SystemCapability.BundleManager.BundleFramework.Launcher

**参数:**

J
junyi233 已提交
30
| 参数名     | 类型   | 必填 | 说明         |
31
| ---------- | ------ | ---- | -------------- |
32
| bundleName | string | 是   | 应用Bundle名称。 |
33 34 35 36 37 38
| userId     | number | 是   | 被查询的用户id。|

**返回值:**

| 类型                                | 说明                                                |
| ----------------------------------- | --------------------------------------------------- |
Z
zhaogan 已提交
39 40 41
| AsyncCallback\<Array<[LauncherAbilityInfo](js-apis-bundleManager-launcherAbilityInfo.md)>> | callback形式返回bundle包含的[LauncherAbilityInfo](js-apis-bundleManager-launcherAbilityInfo.md)信息。 |

**错误码:**
42

Z
zhaogan 已提交
43
以下错误码的详细介绍请参见[ohos.bundle错误码](../errorcodes/errorcode-bundle.md)
44

Z
zhaogan 已提交
45
| 错误码ID | 错误信息                                 |
46 47
| -------- | ---------------------------------------- |
| 17700001 | The specified bundle name is not found.  |
X
xsz233 已提交
48
| 17700004 | The specified user ID is not found.      |
49 50 51

**示例:**

Z
zhaogan 已提交
52
```ts
53 54 55 56 57
import launcherBundleManager from '@ohos.bundle.launcherBundleManager';

try {
    launcherBundleManager.getLauncherAbilityInfo('com.example.demo', 100, (errData, data) => {
        if (errData !== null) {
S
SoftSquirrel 已提交
58 59 60
            console.error(`errData is errCode:${errData.code}  message:${errData.message}`);
        } else {
            console.log("data is " + JSON.stringify(data));
61 62 63
        }
    })
} catch (errData) {
S
SoftSquirrel 已提交
64
    console.error(`errData is errCode:${errData.code}  message:${errData.message}`);
65 66 67
}
```

Z
zhaogan 已提交
68 69
## launcherBundlemanager.getLauncherAbilityInfo<sup>9+</sup>

70 71 72 73 74 75 76 77 78 79 80 81
getLauncherAbilityInfo(bundleName: string, userId: number) : Promise<Array\<[LauncherAbilityInfo](js-apis-bundleManager-launcherAbilityInfo.md)>>;

查询指定bundleName及用户的[LauncherAbilityInfo](js-apis-bundleManager-launcherAbilityInfo.md)

**需要权限:** ohos.permission.GET_BUNDLE_INFO_PRIVILEGED

**系统接口:** 此接口为系统接口

**系统能力:** SystemCapability.BundleManager.BundleFramework.Launcher

**参数:**

J
junyi233 已提交
82
| 参数名     | 类型   | 必填 | 说明         |
83
| ---------- | ------ | ---- | -------------- |
84
| bundleName | string | 是   | 应用Bundle名称。 |
85 86 87 88 89 90
| userId     | number | 是   | 被查询的用户id。 |

**返回值:**

| 类型                          | 说明                                               |
| ----------------------------- | -------------------------------------------------- |
Z
zhaogan 已提交
91 92 93
| Promise\<Array<[LauncherAbilityInfo](js-apis-bundleManager-launcherAbilityInfo.md)>> | Promise形式返回bundle包含的[LauncherAbilityInfo](js-apis-bundleManager-launcherAbilityInfo.md)信息。 |

**错误码:**
94

Z
zhaogan 已提交
95
以下错误码的详细介绍请参见[ohos.bundle错误码](../errorcodes/errorcode-bundle.md)
96

Z
zhaogan 已提交
97
| 错误码ID | 错误信息                                 |
98 99
| -------- | ---------------------------------------- |
| 17700001 | The specified bundle name is not found.  |
X
xsz233 已提交
100
| 17700004 | The specified user ID is not found.       |
101 102 103 104 105 106 107 108

**示例:**

```typescript
import launcherBundleManager from '@ohos.bundle.launcherBundleManager';

try {
    launcherBundleManager.getLauncherAbilityInfo("com.example.demo", 100).then(data => {
109
        console.log("data is " + JSON.stringify(data));
110
    }).catch (errData => {
S
SoftSquirrel 已提交
111
        console.error(`errData is errCode:${errData.code}  message:${errData.message}`);
112 113
    })
} catch (errData) {
S
SoftSquirrel 已提交
114
    console.error(`errData is errCode:${errData.code}  message:${errData.message}`);
115 116 117
}
```

L
lishiyu 已提交
118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164
## launcherBundlemanager.getLauncherAbilityInfoSync<sup>10+</sup>

getLauncherAbilityInfoSync(bundleName: string, userId: number) : Array\<[LauncherAbilityInfo](js-apis-bundleManager-launcherAbilityInfo.md)>;

查询指定bundleName及用户的[LauncherAbilityInfo](js-apis-bundleManager-launcherAbilityInfo.md)

**需要权限:** ohos.permission.GET_BUNDLE_INFO_PRIVILEGED

**系统接口:** 此接口为系统接口

**系统能力:** SystemCapability.BundleManager.BundleFramework.Launcher

**参数:**

| 参数名     | 类型   | 必填 | 说明         |
| ---------- | ------ | ---- | -------------- |
| bundleName | string | 是   | 应用Bundle名称。 |
| userId     | number | 是   | 被查询的用户id。 |

**返回值:**

| 类型                          | 说明                                               |
| ----------------------------- | -------------------------------------------------- |
| Array<[LauncherAbilityInfo](js-apis-bundleManager-launcherAbilityInfo.md)> | Array形式返回bundle包含的[LauncherAbilityInfo](js-apis-bundleManager-launcherAbilityInfo.md)信息。 |

**错误码:**

以下错误码的详细介绍请参见[ohos.bundle错误码](../errorcodes/errorcode-bundle.md)

| 错误码ID | 错误信息                                 |
| -------- | ---------------------------------------- |
| 17700001 | The specified bundle name is not found.  |
| 17700004 | The specified user ID is not found.       |

**示例:**

```typescript
import launcherBundleManager from '@ohos.bundle.launcherBundleManager';

try {
    let data: Array<LauncherAbilityInfo> = launcherBundleManager.getLauncherAbilityInfoSync("com.example.demo", 100);
    console.log("data is " + JSON.stringify(data[0]));
} catch (errData) {
    console.error(`errData is errCode:${errData.code}  message:${errData.message}`);
}
```

165 166 167 168 169 170 171 172 173 174 175 176 177 178
## launcherBundlemanager.getAllLauncherAbilityInfo<sup>9+</sup>

getAllLauncherAbilityInfo(userId: number, callback: AsyncCallback<Array\<[LauncherAbilityInfo](js-apis-bundleManager-launcherAbilityInfo.md)>>) : void;

查询指定用户下所有应用的[LauncherAbilityInfo](js-apis-bundleManager-launcherAbilityInfo.md)

**需要权限:** ohos.permission.GET_BUNDLE_INFO_PRIVILEGED

**系统接口:** 此接口为系统接口

**系统能力:** SystemCapability.BundleManager.BundleFramework.Launcher

**参数:**

J
junyi233 已提交
179
| 参数名 | 类型   | 必填 | 说明         |
180 181 182 183 184 185 186
| ------ | ------ | ---- | -------------- |
| userId | number | 是   | 被查询的用户id。 |

**返回值:**

| 类型                                | 说明                                                    |
| ----------------------------------- | ------------------------------------------------------- |
Z
zhaogan 已提交
187
| AsyncCallback\<Array<[LauncherAbilityInfo](js-apis-bundleManager-launcherAbilityInfo.md)>> | callback形式返回指定用户下所有应用的[LauncherAbilityInfo](js-apis-bundleManager-launcherAbilityInfo.md)。 |
188

Z
zhaogan 已提交
189
**错误码:**
190

Z
zhaogan 已提交
191 192 193
以下错误码的详细介绍请参见[ohos.bundle错误码](../errorcodes/errorcode-bundle.md)

| 错误码ID | 错误信息                                |
194
| -------- | ---------------------------------------- |
X
xsz233 已提交
195
| 17700004 | The specified user ID is not found.      |
196 197 198

示例:

Z
zhaogan 已提交
199
```ts
200 201 202 203 204
import launcherBundleManager from '@ohos.bundle.launcherBundleManager';

try {
    launcherBundleManager.getAllLauncherAbilityInfo(100, (errData, data) => {
        if (errData !== null) {
S
SoftSquirrel 已提交
205 206 207
            console.error(`errData is errCode:${errData.code}  message:${errData.message}`);
        } else {
            console.log("data is " + JSON.stringify(data));
208
        }
Z
zhaogan 已提交
209
    });
210
} catch (errData) {
S
SoftSquirrel 已提交
211
    console.error(`errData is errCode:${errData.code}  message:${errData.message}`);
212 213
}
```
Z
zhaogan 已提交
214
## launcherBundlemanager.getAllLauncherAbilityInfo<sup>9+</sup>
215 216 217 218 219 220 221 222 223 224 225 226 227

getAllLauncherAbilityInfo(userId: number) : Promise<Array\<[LauncherAbilityInfo](js-apis-bundleManager-launcherAbilityInfo.md)>>;

查询指定用户下所有应用的[LauncherAbilityInfo](js-apis-bundleManager-launcherAbilityInfo.md)

**需要权限:** ohos.permission.GET_BUNDLE_INFO_PRIVILEGED

**系统接口:** 此接口为系统接口

**系统能力:** SystemCapability.BundleManager.BundleFramework.Launcher

**参数:**

J
junyi233 已提交
228
| 参数名 | 类型   | 必填 | 说明         |
229 230 231 232 233 234 235
| ------ | ------ | ---- | -------------- |
| userId | number | 是   | 被查询的用户id。 |

**返回值:**

| 类型                          | 说明                                                   |
| ----------------------------- | ------------------------------------------------------ |
Z
zhaogan 已提交
236
| Promise\<Array<[LauncherAbilityInfo](js-apis-bundleManager-launcherAbilityInfo.md)>> | Promise形式返回指定用户下所有应用的[LauncherAbilityInfo](js-apis-bundleManager-launcherAbilityInfo.md)。 |
237

Z
zhaogan 已提交
238
**错误码:**
239

Z
zhaogan 已提交
240 241 242 243
以下错误码的详细介绍请参见[ohos.bundle错误码](../errorcodes/errorcode-bundle.md)

| 错误码ID | 错误信息                                |
| -------- | ---------------------------------------- |
X
xsz233 已提交
244
| 17700004 | The specified user ID is not found.      |
Z
zhaogan 已提交
245 246 247 248

**示例:**

```ts
249 250 251 252
import launcherBundleManager from '@ohos.bundle.launcherBundleManager';

try {
    launcherBundleManager.getAllLauncherAbilityInfo(100).then(data => {
253
        console.log("data is " + JSON.stringify(data));
254
    }).catch (errData => {
S
SoftSquirrel 已提交
255
        console.error(`errData is errCode:${errData.code}  message:${errData.message}`);
Z
zhaogan 已提交
256
    });
257
} catch (errData) {
S
SoftSquirrel 已提交
258
    console.error(`errData is errCode:${errData.code}  message:${errData.message}`);
259 260 261 262 263 264 265
}
```

## launcherBundlemanager.getShortcutInfo<sup>9+</sup>

getShortcutInfo(bundleName :string, callback: AsyncCallback<Array\<[ShortcutInfo](js-apis-bundleManager-shortcutInfo.md)>>) : void;

Z
zhaogan 已提交
266
查询当前用户下指定应用的[ShortcutInfo](js-apis-bundleManager-shortcutInfo.md)
267 268 269 270 271 272 273

**需要权限:** ohos.permission.GET_BUNDLE_INFO_PRIVILEGED

**系统接口:** 此接口为系统接口

**系统能力:** SystemCapability.BundleManager.BundleFramework.Launcher

J
junyi233 已提交
274
| 参数名     | 类型   | 必填 | 说明         |
275
| ---------- | ------ | ---- | -------------- |
276
| bundleName | string | 是   | 应用Bundle名称。 |
277 278 279 280 281

**返回值:**

| 类型                                                         | 说明                                                         |
| ------------------------------------------------------------ | ------------------------------------------------------------ |
Z
zhaogan 已提交
282
| AsyncCallback\<Array<[ShortcutInfo](js-apis-bundleManager-shortcutInfo.md)>> | callback形式返回当前用户下指定应用的[ShortcutInfo](js-apis-bundleManager-shortcutInfo.md)。 |
283

Z
zhaogan 已提交
284
**错误码:**
285

Z
zhaogan 已提交
286 287 288 289 290 291 292 293 294
以下错误码的详细介绍请参见[ohos.bundle错误码](../errorcodes/errorcode-bundle.md)

| 错误码ID | 错误信息                                |
| -------- | ---------------------------------------- |
| 17700001 | The specified bundle name is not found.  |

**示例:**

```ts
295 296 297 298 299
import launcherBundleManager from '@ohos.bundle.launcherBundleManager';

try {
    launcherBundleManager.getShortcutInfo("com.example.demo", (errData, data) => {
        if (errData !== null) {
S
SoftSquirrel 已提交
300 301 302
            console.error(`errData is errCode:${errData.code}  message:${errData.message}`);
        } else {
            console.log("data is " + JSON.stringify(data));
303
        }
Z
zhaogan 已提交
304
    });
305
} catch (errData) {
S
SoftSquirrel 已提交
306
    console.error(`errData is errCode:${errData.code}  message:${errData.message}`);
307 308 309
}
```

Z
zhaogan 已提交
310 311
## launcherBundlemanager.getShortcutInfo<sup>9+</sup>

312 313
getShortcutInfo(bundleName : string) : Promise<Array\<[ShortcutInfo](js-apis-bundleManager-shortcutInfo.md)>>;

Z
zhaogan 已提交
314 315
查询当前用户下指定应用的[ShortcutInfo](js-apis-bundleManager-shortcutInfo.md)

316 317 318 319 320 321
**需要权限:** ohos.permission.GET_BUNDLE_INFO_PRIVILEGED

**系统接口:** 此接口为系统接口

**系统能力:** SystemCapability.BundleManager.BundleFramework.Launcher

J
junyi233 已提交
322
| 参数名     | 类型   | 必填 | 说明         |
323
| ---------- | ------ | ---- | -------------- |
324
| bundleName | string | 是   | 应用Bundle名称。 |
325 326 327 328 329

**返回值:**

| 类型                   | 说明                                            |
| ---------------------- | ----------------------------------------------- |
Z
zhaogan 已提交
330
| Promise\<Array<[ShortcutInfo](js-apis-bundleManager-shortcutInfo.md)>> | Promise形式返回当前用户下指定应用的[ShortcutInfo](js-apis-bundleManager-shortcutInfo.md)。 |
331

Z
zhaogan 已提交
332
**错误码:**
333

Z
zhaogan 已提交
334 335 336 337 338 339 340 341 342
以下错误码的详细介绍请参见[ohos.bundle错误码](../errorcodes/errorcode-bundle.md)

| 错误码ID | 错误信息                                |
| -------- | ---------------------------------------- |
| 17700001 | The specified bundle name is not found.  |

**示例:**

```ts
343 344 345 346
import launcherBundleManager from '@ohos.bundle.launcherBundleManager';

try {
    launcherBundleManager.getShortcutInfo("com.example.demo").then(data => {
347
        console.log("data is " + JSON.stringify(data));
348
    }).catch (errData => {
S
SoftSquirrel 已提交
349
        console.error(`errData is errCode:${errData.code}  message:${errData.message}`);
Z
zhaogan 已提交
350
    });
351
} catch (errData) {
S
SoftSquirrel 已提交
352
    console.error(`errData is errCode:${errData.code}  message:${errData.message}`);
353 354
}
```
L
lishiyu 已提交
355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397

## launcherBundlemanager.getShortcutInfoSync<sup>10+</sup>

getShortcutInfoSync(bundleName : string) : Array\<[ShortcutInfo](js-apis-bundleManager-shortcutInfo.md)>;

查询当前用户下指定应用的[ShortcutInfo](js-apis-bundleManager-shortcutInfo.md)

**需要权限:** ohos.permission.GET_BUNDLE_INFO_PRIVILEGED

**系统接口:** 此接口为系统接口

**系统能力:** SystemCapability.BundleManager.BundleFramework.Launcher

| 参数名     | 类型   | 必填 | 说明         |
| ---------- | ------ | ---- | -------------- |
| bundleName | string | 是   | 应用Bundle名称。 |

**返回值:**

| 类型                   | 说明                                            |
| ---------------------- | ----------------------------------------------- |
| Array<[ShortcutInfo](js-apis-bundleManager-shortcutInfo.md)> | Array形式返回当前用户下指定应用的[ShortcutInfo](js-apis-bundleManager-shortcutInfo.md)。 |

**错误码:**

以下错误码的详细介绍请参见[ohos.bundle错误码](../errorcodes/errorcode-bundle.md)

| 错误码ID | 错误信息                                |
| -------- | ---------------------------------------- |
| 17700001 | The specified bundle name is not found.  |

**示例:**

```ts
import launcherBundleManager from '@ohos.bundle.launcherBundleManager';

try {
    let data: Array<ShortcutInfo> = launcherBundleManager.getShortcutInfo("com.example.demo");
    console.log("data is " + JSON.stringify(data[0]));
} catch (errData) {
    console.error(`errData is errCode:${errData.code}  message:${errData.message}`);
}
```