js-apis-radio.md 117.7 KB
Newer Older
Z
zengyawen 已提交
1
# @ohos.telephony.radio (网络搜索)
Z
zengyawen 已提交
2

C
clevercong 已提交
3 4
网络搜索模块提供管理网络搜索的一些基础功能,包括获取当前接入的CS域和PS域无线接入技术、获取网络状态、获取当前选网模式、获取注册网络所在国家的ISO国家码、获取主卡所在卡槽的索引号、获取指定SIM卡槽对应的注册网络信号强度信息列表、获取运营商名称、获取设备的指定卡槽的IMEI、获取设备的指定卡槽的MEID、获取设备的指定卡槽的唯一设备ID,判断当前设备是否支持5G\(NR\)、判断主卡的Radio是否打开等。

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


Z
zengyawen 已提交
10
## 导入模块
C
clevercong 已提交
11 12

```
D
dingxiaochen 已提交
13
import radio from '@ohos.telephony.radio';
C
clevercong 已提交
14 15
```

C
clevercong 已提交
16
## radio.getRadioTech
C
clevercong 已提交
17 18 19

getRadioTech\(slotId: number, callback: AsyncCallback<\{psRadioTech: RadioTechnology, csRadioTech: RadioTechnology\}\>\): void

20
获取当前接入的CS域和PS域无线接入技术。使用callback异步回调。
C
clevercong 已提交
21

C
clevercong 已提交
22
**需要权限**:ohos.permission.GET_NETWORK_INFO
C
clevercong 已提交
23

Y
YOUR_NAME 已提交
24 25
**系统能力**:SystemCapability.Telephony.CoreService

Z
zengyawen 已提交
26
**参数:**
Z
zengyawen 已提交
27

Z
zengyawen 已提交
28 29 30
| 参数名   | 类型                                                         | 必填 | 说明                                   |
| -------- | ------------------------------------------------------------ | ---- | -------------------------------------- |
| slotId   | number                                                       | 是   | 卡槽ID。<br/>- 0:卡槽1<br/>- 1:卡槽2 |
C
clevercong 已提交
31
| callback | AsyncCallback\<{psRadioTech: [RadioTechnology](#radiotechnology), csRadioTech:[RadioTechnology](#radiotechnology)}\> | 是   | 回调函数。                             |
C
clevercong 已提交
32

D
dingxiaochen 已提交
33 34
**错误码:**

D
dingxiaochen 已提交
35 36
以下错误码的详细介绍请参见[ohos.telephony(电话子系统)错误码](../../reference/errorcodes/errorcode-telephony.md)错误码。

D
dingxiaochen 已提交
37 38 39 40 41 42 43 44 45
| 错误码ID |                  错误信息                    |
| -------- | -------------------------------------------- |
| 201      | Permission denied.                           |
| 401      | Parameter error.                             |
| 8300001  | Invalid parameter value.                     |
| 8300002  | Operation failed. Cannot connect to service. |
| 8300003  | System internal error.                       |
| 8300999  | Unknown error code.                          |

Z
zengyawen 已提交
46
**示例:**
C
clevercong 已提交
47

Z
zengyawen 已提交
48
```js
Z
zengyawen 已提交
49
let slotId = 0;
D
dingxiaochen 已提交
50
radio.getRadioTech(slotId, (err, data) => {
Z
zengyawen 已提交
51 52 53
    console.log(`callback: err->${JSON.stringify(err)}, data->${JSON.stringify(data)}`);
});
```
C
clevercong 已提交
54 55


C
clevercong 已提交
56
## radio.getRadioTech
C
clevercong 已提交
57 58 59

getRadioTech\(slotId: number\): Promise<\{psRadioTech: RadioTechnology, csRadioTech: RadioTechnology\}\>

60
获取当前接入的CS域和PS域无线接入技术。使用Promise异步回调。
C
clevercong 已提交
61

C
clevercong 已提交
62
**需要权限**:ohos.permission.GET_NETWORK_INFO
C
clevercong 已提交
63

Y
YOUR_NAME 已提交
64 65
**系统能力**:SystemCapability.Telephony.CoreService

Z
zengyawen 已提交
66
**参数:**
Z
zengyawen 已提交
67

Z
zengyawen 已提交
68 69 70
| 参数名 | 类型   | 必填 | 说明                                   |
| ------ | ------ | ---- | -------------------------------------- |
| slotId | number | 是   | 卡槽ID。<br/>- 0:卡槽1<br/>- 1:卡槽2 |
Z
zengyawen 已提交
71

Z
zengyawen 已提交
72
**返回值:**
Z
zengyawen 已提交
73

Z
zengyawen 已提交
74 75
| 类型                                                         | 说明                                            |
| ------------------------------------------------------------ | ----------------------------------------------- |
C
clevercong 已提交
76
| Promise<{psRadioTech: [RadioTechnology](#radiotechnology), csRadioTech: [RadioTechnology](#radiotechnology)}> | 以Promise形式返回获取当前接入的CS域和PS域技术。 |
C
clevercong 已提交
77

D
dingxiaochen 已提交
78 79
**错误码:**

D
dingxiaochen 已提交
80 81
以下错误码的详细介绍请参见[ohos.telephony(电话子系统)错误码](../../reference/errorcodes/errorcode-telephony.md)错误码。

D
dingxiaochen 已提交
82 83 84 85 86 87 88 89 90
| 错误码ID |                  错误信息                    |
| -------- | -------------------------------------------- |
| 201      | Permission denied.                           |
| 401      | Parameter error.                             |
| 8300001  | Invalid parameter value.                     |
| 8300002  | Operation failed. Cannot connect to service. |
| 8300003  | System internal error.                       |
| 8300999  | Unknown error code.                          |

Z
zengyawen 已提交
91
**示例:**
C
clevercong 已提交
92

Z
zengyawen 已提交
93
```js
Z
zengyawen 已提交
94 95 96 97 98
let slotId = 0;
let promise = radio.getRadioTech(slotId);
promise.then(data => {
    console.log(`getRadioTech success, data->${JSON.stringify(data)}`);
}).catch(err => {
99
    console.log(`getRadioTech failed, err->${JSON.stringify(err)}`);
Z
zengyawen 已提交
100 101
});
```
C
clevercong 已提交
102 103


C
clevercong 已提交
104
## radio.getNetworkState
C
clevercong 已提交
105 106 107

getNetworkState\(callback: AsyncCallback<NetworkState\>\): void

108
获取网络状态。使用callback异步回调。
C
clevercong 已提交
109

C
clevercong 已提交
110
**需要权限**:ohos.permission.GET_NETWORK_INFO
C
clevercong 已提交
111

Y
YOUR_NAME 已提交
112 113
**系统能力**:SystemCapability.Telephony.CoreService

Z
zengyawen 已提交
114
**参数:**
Z
zengyawen 已提交
115

Z
zengyawen 已提交
116 117
| 参数名   | 类型                                           | 必填 | 说明       |
| -------- | ---------------------------------------------- | ---- | ---------- |
C
clevercong 已提交
118
| callback | AsyncCallback\<[NetworkState](#networkstate)\> | 是   | 回调函数。 |
C
clevercong 已提交
119

D
dingxiaochen 已提交
120 121
**错误码:**

D
dingxiaochen 已提交
122 123
以下错误码的详细介绍请参见[ohos.telephony(电话子系统)错误码](../../reference/errorcodes/errorcode-telephony.md)错误码。

D
dingxiaochen 已提交
124 125 126 127 128 129 130 131 132
| 错误码ID |                  错误信息                    |
| -------- | -------------------------------------------- |
| 201      | Permission denied.                           |
| 401      | Parameter error.                             |
| 8300001  | Invalid parameter value.                     |
| 8300002  | Operation failed. Cannot connect to service. |
| 8300003  | System internal error.                       |
| 8300999  | Unknown error code.                          |

Z
zengyawen 已提交
133
**示例:**
C
clevercong 已提交
134

Z
zengyawen 已提交
135
```js
D
dingxiaochen 已提交
136
radio.getNetworkState((err, data) => {
Z
zengyawen 已提交
137 138 139
    console.log(`callback: err->${JSON.stringify(err)}, data->${JSON.stringify(data)}`);
});
```
C
clevercong 已提交
140 141


C
clevercong 已提交
142
## radio.getNetworkState
C
clevercong 已提交
143 144 145

getNetworkState\(slotId: number, callback: AsyncCallback<NetworkState\>\): void

146
获取网络状态。使用callback异步回调。
C
clevercong 已提交
147

C
clevercong 已提交
148
**需要权限**:ohos.permission.GET_NETWORK_INFO
C
clevercong 已提交
149

Y
YOUR_NAME 已提交
150 151
**系统能力**:SystemCapability.Telephony.CoreService

Z
zengyawen 已提交
152
**参数:**
Z
zengyawen 已提交
153

Z
zengyawen 已提交
154 155 156
| 参数名   | 类型                                           | 必填 | 说明                                   |
| -------- | ---------------------------------------------- | ---- | -------------------------------------- |
| slotId   | number                                         | 是   | 卡槽ID。<br/>- 0:卡槽1<br/>- 1:卡槽2 |
C
clevercong 已提交
157
| callback | AsyncCallback\<[NetworkState](#networkstate)\> | 是   | 回调函数。                             |
C
clevercong 已提交
158

D
dingxiaochen 已提交
159 160
**错误码:**

D
dingxiaochen 已提交
161 162
以下错误码的详细介绍请参见[ohos.telephony(电话子系统)错误码](../../reference/errorcodes/errorcode-telephony.md)错误码。

D
dingxiaochen 已提交
163 164 165 166 167 168 169 170 171
| 错误码ID |                  错误信息                    |
| -------- | -------------------------------------------- |
| 201      | Permission denied.                           |
| 401      | Parameter error.                             |
| 8300001  | Invalid parameter value.                     |
| 8300002  | Operation failed. Cannot connect to service. |
| 8300003  | System internal error.                       |
| 8300999  | Unknown error code.                          |

Z
zengyawen 已提交
172
**示例:**
C
clevercong 已提交
173

Z
zengyawen 已提交
174
```js
Z
zengyawen 已提交
175 176 177 178 179
let slotId = 0;
radio.getNetworkState(slotId, (err, data) => {
    console.log(`callback: err->${JSON.stringify(err)}, data->${JSON.stringify(data)}`);
});
```
C
clevercong 已提交
180 181


C
clevercong 已提交
182
## radio.getNetworkState
C
clevercong 已提交
183 184 185

getNetworkState\(slotId?: number\): Promise<NetworkState\>

186
获取网络状态。使用Promise异步回调。
C
clevercong 已提交
187

C
clevercong 已提交
188
**需要权限**:ohos.permission.GET_NETWORK_INFO
C
clevercong 已提交
189

Y
YOUR_NAME 已提交
190 191
**系统能力**:SystemCapability.Telephony.CoreService

Z
zengyawen 已提交
192
**参数:**
Z
zengyawen 已提交
193

Z
zengyawen 已提交
194 195 196
| 参数名 | 类型   | 必填 | 说明                                   |
| ------ | ------ | ---- | -------------------------------------- |
| slotId | number | 否   | 卡槽ID。<br/>- 0:卡槽1<br/>- 1:卡槽2 |
Z
zengyawen 已提交
197

Z
zengyawen 已提交
198
**返回值:**
Z
zengyawen 已提交
199

Z
zengyawen 已提交
200 201
| 类型                                     | 说明                        |
| ---------------------------------------- | --------------------------- |
C
clevercong 已提交
202
| Promise\<[NetworkState](#networkstate)\> | 以Promise形式返回网络状态。 |
C
clevercong 已提交
203

D
dingxiaochen 已提交
204 205
**错误码:**

D
dingxiaochen 已提交
206 207
以下错误码的详细介绍请参见[ohos.telephony(电话子系统)错误码](../../reference/errorcodes/errorcode-telephony.md)错误码。

D
dingxiaochen 已提交
208 209 210 211 212 213 214 215 216
| 错误码ID |                  错误信息                    |
| -------- | -------------------------------------------- |
| 201      | Permission denied.                           |
| 401      | Parameter error.                             |
| 8300001  | Invalid parameter value.                     |
| 8300002  | Operation failed. Cannot connect to service. |
| 8300003  | System internal error.                       |
| 8300999  | Unknown error code.                          |

Z
zengyawen 已提交
217
**示例:**
C
clevercong 已提交
218

Z
zengyawen 已提交
219
```js
Z
zengyawen 已提交
220 221 222 223 224
let slotId = 0;
let promise = radio.getNetworkState(slotId);
promise.then(data => {
    console.log(`getNetworkState success, promise: data->${JSON.stringify(data)}`);
}).catch(err => {
225
    console.log(`getNetworkState failed, promise: err->${JSON.stringify(err)}`);
Z
zengyawen 已提交
226 227
});
```
C
clevercong 已提交
228 229


C
clevercong 已提交
230
## radio.getNetworkSelectionMode
C
clevercong 已提交
231 232 233

getNetworkSelectionMode\(slotId: number, callback: AsyncCallback<NetworkSelectionMode\>\): void

234
获取当前选网模式。使用callback异步回调。
C
clevercong 已提交
235

Y
YOUR_NAME 已提交
236 237
**系统能力**:SystemCapability.Telephony.CoreService

Z
zengyawen 已提交
238
**参数:**
Z
zengyawen 已提交
239

Z
zengyawen 已提交
240 241 242
| 参数名   | 类型                                                         | 必填 | 说明                                   |
| -------- | ------------------------------------------------------------ | ---- | -------------------------------------- |
| slotId   | number                                                       | 是   | 卡槽ID。<br/>- 0:卡槽1<br/>- 1:卡槽2 |
Z
zengyawen 已提交
243
| callback | AsyncCallback\<[NetworkSelectionMode](#networkselectionmode)\> | 是   | 回调函数。                             |
C
clevercong 已提交
244

D
dingxiaochen 已提交
245 246
**错误码:**

D
dingxiaochen 已提交
247 248
以下错误码的详细介绍请参见[ohos.telephony(电话子系统)错误码](../../reference/errorcodes/errorcode-telephony.md)错误码。

D
dingxiaochen 已提交
249 250 251 252 253 254 255 256
| 错误码ID |                 错误信息                     |
| -------- | -------------------------------------------- |
| 401      | Parameter error.                             |
| 8300001  | Invalid parameter value.                     |
| 8300002  | Operation failed. Cannot connect to service. |
| 8300003  | System internal error.                       |
| 8300999  | Unknown error code.                          |

Z
zengyawen 已提交
257
**示例:**
C
clevercong 已提交
258

Z
zengyawen 已提交
259
```js
Z
zengyawen 已提交
260 261 262 263 264
let slotId = 0;
radio.getNetworkSelectionMode(slotId, (err, data) => {
    console.log(`callback: err->${JSON.stringify(err)}, data->${JSON.stringify(data)}`);
});
```
C
clevercong 已提交
265 266


C
clevercong 已提交
267
## radio.getNetworkSelectionMode
C
clevercong 已提交
268 269 270

getNetworkSelectionMode\(slotId: number\): Promise<NetworkSelectionMode\>

271
获取当前选网模式。使用Promise异步回调。
C
clevercong 已提交
272

Y
YOUR_NAME 已提交
273 274
**系统能力**:SystemCapability.Telephony.CoreService

Z
zengyawen 已提交
275
**参数:**
Z
zengyawen 已提交
276

Z
zengyawen 已提交
277 278 279
| 参数名 | 类型   | 必填 | 说明                                   |
| ------ | ------ | ---- | -------------------------------------- |
| slotId | number | 是   | 卡槽ID。<br/>- 0:卡槽1<br/>- 1:卡槽2 |
Z
zengyawen 已提交
280

Z
zengyawen 已提交
281
**返回值:**
Z
zengyawen 已提交
282

Z
zengyawen 已提交
283 284
| 类型                                                     | 说明                            |
| -------------------------------------------------------- | ------------------------------- |
C
clevercong 已提交
285
| Promise\<[NetworkSelectionMode](#networkselectionmode)\> | 以Promise形式返回当前选网模式。 |
C
clevercong 已提交
286

D
dingxiaochen 已提交
287 288
**错误码:**

D
dingxiaochen 已提交
289 290
以下错误码的详细介绍请参见[ohos.telephony(电话子系统)错误码](../../reference/errorcodes/errorcode-telephony.md)错误码。

D
dingxiaochen 已提交
291 292 293 294 295 296 297 298
| 错误码ID |                 错误信息                     |
| -------- | -------------------------------------------- |
| 401      | Parameter error.                             |
| 8300001  | Invalid parameter value.                     |
| 8300002  | Operation failed. Cannot connect to service. |
| 8300003  | System internal error.                       |
| 8300999  | Unknown error code.                          |

Z
zengyawen 已提交
299
**示例:**
C
clevercong 已提交
300

Z
zengyawen 已提交
301
```js
Z
zengyawen 已提交
302 303 304 305 306
let slotId = 0;
let promise = radio.getNetworkSelectionMode(slotId);
promise.then(data => {
    console.log(`getNetworkSelectionMode success, promise: data->${JSON.stringify(data)}`);
}).catch(err => {
307
    console.log(`getNetworkSelectionMode failed, promise: err->${JSON.stringify(err)}`);
Z
zengyawen 已提交
308 309
});
```
C
clevercong 已提交
310 311


C
clevercong 已提交
312
## radio.getISOCountryCodeForNetwork<sup>7+</sup>
C
clevercong 已提交
313 314 315

getISOCountryCodeForNetwork\(slotId: number, callback: AsyncCallback<string\>\): void

316
获取注册网络所在国家的ISO国家码。使用callback异步回调。
C
clevercong 已提交
317

Y
YOUR_NAME 已提交
318 319
**系统能力**:SystemCapability.Telephony.CoreService

Z
zengyawen 已提交
320
**参数:**
Z
zengyawen 已提交
321

Z
zengyawen 已提交
322 323 324 325
| 参数名   | 类型                    | 必填 | 说明                                     |
| -------- | ----------------------- | ---- | ---------------------------------------- |
| slotId   | number                  | 是   | 卡槽ID。<br/>- 0:卡槽1<br/>- 1:卡槽2   |
| callback | AsyncCallback\<string\> | 是   | 回调函数。返回国家码,例如:CN(中国)。 |
C
clevercong 已提交
326

D
dingxiaochen 已提交
327 328
**错误码:**

D
dingxiaochen 已提交
329 330
以下错误码的详细介绍请参见[ohos.telephony(电话子系统)错误码](../../reference/errorcodes/errorcode-telephony.md)错误码。

D
dingxiaochen 已提交
331 332 333 334 335 336 337 338
| 错误码ID |                 错误信息                     |
| -------- | -------------------------------------------- |
| 401      | Parameter error.                             |
| 8300001  | Invalid parameter value.                     |
| 8300002  | Operation failed. Cannot connect to service. |
| 8300003  | System internal error.                       |
| 8300999  | Unknown error code.                          |

Z
zengyawen 已提交
339
**示例:**
C
clevercong 已提交
340

Z
zengyawen 已提交
341
```js
Z
zengyawen 已提交
342 343 344 345 346
let slotId = 0;
radio.getISOCountryCodeForNetwork(slotId, (err, data) => {
    console.log(`callback: err->${JSON.stringify(err)}, data->${JSON.stringify(data)}`);
});
```
C
clevercong 已提交
347 348


C
clevercong 已提交
349
## radio.getISOCountryCodeForNetwork<sup>7+</sup>
C
clevercong 已提交
350 351 352

getISOCountryCodeForNetwork\(slotId: number\): Promise<string\>

353
获取注册网络所在国家的ISO国家码。使用Promise异步回调。
C
clevercong 已提交
354

Y
YOUR_NAME 已提交
355 356
**系统能力**:SystemCapability.Telephony.CoreService

Z
zengyawen 已提交
357
**参数:**
Z
zengyawen 已提交
358

Z
zengyawen 已提交
359 360 361
| 参数名 | 类型   | 必填 | 说明                                   |
| ------ | ------ | ---- | -------------------------------------- |
| slotId | number | 是   | 卡槽ID。<br/>- 0:卡槽1<br/>- 1:卡槽2 |
Z
zengyawen 已提交
362

Z
zengyawen 已提交
363
**返回值:**
Z
zengyawen 已提交
364

Z
zengyawen 已提交
365 366 367
| 类型              | 说明                                                         |
| ----------------- | ------------------------------------------------------------ |
| Promise\<string\> | 以Promise形式返回注册网络所在国家的ISO国家码,例如CN(中国)。 |
C
clevercong 已提交
368

D
dingxiaochen 已提交
369 370
**错误码:**

D
dingxiaochen 已提交
371 372
以下错误码的详细介绍请参见[ohos.telephony(电话子系统)错误码](../../reference/errorcodes/errorcode-telephony.md)错误码。

D
dingxiaochen 已提交
373 374 375 376 377 378 379 380
| 错误码ID |                 错误信息                     |
| -------- | -------------------------------------------- |
| 401      | Parameter error.                             |
| 8300001  | Invalid parameter value.                     |
| 8300002  | Operation failed. Cannot connect to service. |
| 8300003  | System internal error.                       |
| 8300999  | Unknown error code.                          |

Z
zengyawen 已提交
381
**示例:**
C
clevercong 已提交
382

Z
zengyawen 已提交
383
```js
Z
zengyawen 已提交
384 385 386 387 388
let slotId = 0;
let promise = radio.getISOCountryCodeForNetwork(slotId);
promise.then(data => {
    console.log(`getISOCountryCodeForNetwork success, promise: data->${JSON.stringify(data)}`);
}).catch(err => {
389
    console.log(`getISOCountryCodeForNetwork failed, promise: err->${JSON.stringify(err)}`);
Z
zengyawen 已提交
390 391
});
```
C
clevercong 已提交
392 393


C
clevercong 已提交
394
## radio.getPrimarySlotId<sup>7+</sup>
Y
YOUR_NAME 已提交
395 396 397

getPrimarySlotId\(callback: AsyncCallback\<number\>\): void

398
获取主卡所在卡槽的索引号。使用callback异步回调。
Y
YOUR_NAME 已提交
399 400 401 402 403 404 405 406 407

**系统能力**:SystemCapability.Telephony.CoreService

**参数:**

| 参数名   | 类型                                                         | 必填 | 说明                                                         |
| -------- | ------------------------------------------------------------ | ---- | ------------------------------------------------------------ |
| callback | AsyncCallback\<number\> | 是   | 回调函数 |

D
dingxiaochen 已提交
408 409
**错误码:**

D
dingxiaochen 已提交
410 411
以下错误码的详细介绍请参见[ohos.telephony(电话子系统)错误码](../../reference/errorcodes/errorcode-telephony.md)错误码。

D
dingxiaochen 已提交
412 413 414 415 416 417 418
| 错误码ID |                 错误信息                     |
| -------- | -------------------------------------------- |
| 8300001  | Invalid parameter value.                     |
| 8300002  | Operation failed. Cannot connect to service. |
| 8300003  | System internal error.                       |
| 8300999  | Unknown error code.                          |

Y
YOUR_NAME 已提交
419 420
**示例:**

Z
zengyawen 已提交
421
```js
Y
YOUR_NAME 已提交
422 423 424 425 426 427
radio.getPrimarySlotId((err, data) => {
   console.log(`callback: err->${JSON.stringify(err)}, data->${JSON.stringify(data)}`);
});
```


C
clevercong 已提交
428
## radio.getPrimarySlotId<sup>7+</sup>
Y
YOUR_NAME 已提交
429 430 431

getPrimarySlotId\(\): Promise\<number\>

432
获取主卡所在卡槽的索引号。使用Promise异步回调。
Y
YOUR_NAME 已提交
433 434 435 436 437 438 439 440 441

**系统能力**:SystemCapability.Telephony.CoreService

**返回值:**

| 类型                                                        | 说明                                                         |
| ----------------------------------------------------------- | ------------------------------------------------------------ |
| Promise\<number\> | 以Promise形式返回获取设备主卡所在卡槽的索引号的结果。 |

D
dingxiaochen 已提交
442 443
**错误码:**

D
dingxiaochen 已提交
444 445
以下错误码的详细介绍请参见[ohos.telephony(电话子系统)错误码](../../reference/errorcodes/errorcode-telephony.md)错误码。

D
dingxiaochen 已提交
446 447 448 449 450 451 452
| 错误码ID |                 错误信息                     |
| -------- | -------------------------------------------- |
| 8300001  | Invalid parameter value.                     |
| 8300002  | Operation failed. Cannot connect to service. |
| 8300003  | System internal error.                       |
| 8300999  | Unknown error code.                          |

Y
YOUR_NAME 已提交
453 454
**示例:**

Z
zengyawen 已提交
455
```js
Y
YOUR_NAME 已提交
456 457 458 459
let promise = radio.getPrimarySlotId();
promise.then(data => {
    console.log(`getPrimarySlotId success, promise: data->${JSON.stringify(data)}`);
}).catch(err => {
460
    console.error(`getPrimarySlotId failed, promise: err->${JSON.stringify(err)}`);
Y
YOUR_NAME 已提交
461 462 463 464
});
```


C
clevercong 已提交
465
## radio.getSignalInformation<sup>7+</sup>
C
clevercong 已提交
466 467 468

getSignalInformation\(slotId: number, callback: AsyncCallback<Array<SignalInformation\>\>\): void

469
获取指定SIM卡槽对应的注册网络信号强度信息列表。使用callback异步回调。
C
clevercong 已提交
470

Y
YOUR_NAME 已提交
471 472
**系统能力**:SystemCapability.Telephony.CoreService

Z
zengyawen 已提交
473
**参数:**
Z
zengyawen 已提交
474

Z
zengyawen 已提交
475 476 477
| 参数名   | 类型                                                         | 必填 | 说明                                                         |
| -------- | ------------------------------------------------------------ | ---- | ------------------------------------------------------------ |
| slotId   | number                                                       | 是   | 卡槽ID。<br/>- 0:卡槽1<br/>- 1:卡槽2                       |
C
clevercong 已提交
478
| callback | AsyncCallback\<Array\<[SignalInformation](#signalinformation)\>\> | 是   | 回调函数,返回[SignalInformation](#signalinformation)对象的数组。 |
C
clevercong 已提交
479

D
dingxiaochen 已提交
480 481
**错误码:**

D
dingxiaochen 已提交
482 483
以下错误码的详细介绍请参见[ohos.telephony(电话子系统)错误码](../../reference/errorcodes/errorcode-telephony.md)错误码。

D
dingxiaochen 已提交
484 485 486 487 488 489 490 491
| 错误码ID |                 错误信息                     |
| -------- | -------------------------------------------- |
| 401      | Parameter error.                             |
| 8300001  | Invalid parameter value.                     |
| 8300002  | Operation failed. Cannot connect to service. |
| 8300003  | System internal error.                       |
| 8300999  | Unknown error code.                          |

Z
zengyawen 已提交
492
**示例:**
C
clevercong 已提交
493

Z
zengyawen 已提交
494
```js
Z
zengyawen 已提交
495 496 497 498 499
let slotId = 0;
radio.getSignalInformation(slotId, (err, data) => {
   console.log(`callback: err->${JSON.stringify(err)}, data->${JSON.stringify(data)}`);
});
```
C
clevercong 已提交
500 501


C
clevercong 已提交
502
## radio.getSignalInformation<sup>7+</sup>
C
clevercong 已提交
503 504 505

getSignalInformation\(slotId: number\): Promise<Array<SignalInformation\>\>

506
获取指定SIM卡槽对应的注册网络信号强度信息列表。使用Promise异步回调。
C
clevercong 已提交
507

Y
YOUR_NAME 已提交
508 509
**系统能力**:SystemCapability.Telephony.CoreService

Z
zengyawen 已提交
510
**参数:**
Z
zengyawen 已提交
511

Z
zengyawen 已提交
512 513 514
| 参数名 | 类型   | 必填 | 说明                                   |
| ------ | ------ | ---- | -------------------------------------- |
| slotId | number | 是   | 卡槽ID。<br/>- 0:卡槽1<br/>- 1:卡槽2 |
Z
zengyawen 已提交
515

Z
zengyawen 已提交
516
**返回值:**
Z
zengyawen 已提交
517

Z
zengyawen 已提交
518 519
| 类型                                                        | 说明                                                         |
| ----------------------------------------------------------- | ------------------------------------------------------------ |
C
clevercong 已提交
520
| Promise\<Array\<[SignalInformation](#signalinformation)\>\> | 以Promise形式返回网络信号强度[SignalInformation](#signalinformation)对象的数组。 |
C
clevercong 已提交
521

D
dingxiaochen 已提交
522 523
**错误码:**

D
dingxiaochen 已提交
524 525
以下错误码的详细介绍请参见[ohos.telephony(电话子系统)错误码](../../reference/errorcodes/errorcode-telephony.md)错误码。

D
dingxiaochen 已提交
526 527 528 529 530 531 532 533
| 错误码ID |                 错误信息                     |
| -------- | -------------------------------------------- |
| 401      | Parameter error.                             |
| 8300001  | Invalid parameter value.                     |
| 8300002  | Operation failed. Cannot connect to service. |
| 8300003  | System internal error.                       |
| 8300999  | Unknown error code.                          |

Z
zengyawen 已提交
534
**示例:**
C
clevercong 已提交
535

Z
zengyawen 已提交
536
```js
Z
zengyawen 已提交
537 538 539 540 541
let slotId = 0;
let promise = radio.getSignalInformation(slotId);
promise.then(data => {
    console.log(`getSignalInformation success, promise: data->${JSON.stringify(data)}`);
}).catch(err => {
542
    console.error(`getSignalInformation failed, promise: err->${JSON.stringify(err)}`);
Z
zengyawen 已提交
543 544
});
```
C
clevercong 已提交
545

D
dingxiaochen 已提交
546
## radio.isNrSupported<sup>(deprecated)</sup>
D
dingxiaochen 已提交
547 548 549 550 551

isNrSupported\(\): boolean

判断当前设备是否支持5G\(NR\)

D
dingxiaochen 已提交
552 553
> **说明:**
>
D
dingxiaochen 已提交
554
> 从 API version 7开始支持,从API version 9开始废弃。建议使用[isNRSupported](#radioisnrsupported9)替代。
D
dingxiaochen 已提交
555

D
dingxiaochen 已提交
556 557 558 559 560 561 562 563 564 565 566 567 568 569
**系统能力**:SystemCapability.Telephony.CoreService

**返回值:**

| 类型    | 说明                             |
| ------- | -------------------------------- |
| boolean | - true:支持<br/>- false:不支持 |

**示例:**

```js
let result = radio.isNrSupported();
console.log("Result: "+ result);
```
C
clevercong 已提交
570

D
dingxiaochen 已提交
571
## radio.isNrSupported<sup>(deprecated)</sup>
Y
YOUR_NAME 已提交
572 573 574 575 576

isNrSupported\(slotId: number\): boolean

判断当前设备是否支持5G\(NR\)

D
dingxiaochen 已提交
577 578
> **说明:**
>
D
dingxiaochen 已提交
579
> 从 API version 8开始支持,从API version 9开始废弃。建议使用[isNRSupported](#radioisnrsupported9-1)替代。
D
dingxiaochen 已提交
580

Y
YOUR_NAME 已提交
581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596
**系统能力**:SystemCapability.Telephony.CoreService

**参数:**

| 参数名 | 类型   | 必填 | 说明                                   |
| ------ | ------ | ---- | -------------------------------------- |
| slotId | number | 是   | 卡槽ID。<br/>- 0:卡槽1<br/>- 1:卡槽2 |

**返回值:**

| 类型               | 说明                                                         |
| ------------------ | ------------------------------------------------------------ |
| boolean | - true:支持<br/>- false:不支持 |

**示例:**

Z
zengyawen 已提交
597
```js
Y
YOUR_NAME 已提交
598 599
let slotId = 0;
let result = radio.isNrSupported(slotId);
600
console.log("Result: "+ result);
Y
YOUR_NAME 已提交
601 602 603
```


D
dingxiaochen 已提交
604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654
## radio.isNRSupported<sup>9+</sup>

isNRSupported\(\): boolean

判断当前设备是否支持5G\(NR\)

**系统能力**:SystemCapability.Telephony.CoreService

**返回值:**

| 类型    | 说明                             |
| ------- | -------------------------------- |
| boolean | - true:支持<br/>- false:不支持 |

**示例:**

```js
let result = radio.isNRSupported();
console.log("Result: "+ result);
```


## radio.isNRSupported<sup>9+</sup>

isNRSupported\(slotId: number\): boolean

判断当前设备是否支持5G\(NR\)

**系统能力**:SystemCapability.Telephony.CoreService

**参数:**

| 参数名 | 类型   | 必填 | 说明                                   |
| ------ | ------ | ---- | -------------------------------------- |
| slotId | number | 是   | 卡槽ID。<br/>- 0:卡槽1<br/>- 1:卡槽2 |

**返回值:**

| 类型               | 说明                                                         |
| ------------------ | ------------------------------------------------------------ |
| boolean | - true:支持<br/>- false:不支持 |

**示例:**

```js
let slotId = 0;
let result = radio.isNRSupported(slotId);
console.log("Result: "+ result);
```


C
clevercong 已提交
655
## radio.isRadioOn<sup>7+</sup>
C
clevercong 已提交
656 657 658

isRadioOn\(callback: AsyncCallback<boolean\>\): void

659
判断主卡的Radio是否打开。使用callback异步回调。
C
clevercong 已提交
660

C
clevercong 已提交
661
**需要权限**:ohos.permission.GET_NETWORK_INFO
C
clevercong 已提交
662

Y
YOUR_NAME 已提交
663 664
**系统能力**:SystemCapability.Telephony.CoreService

Z
zengyawen 已提交
665
**参数:**
Z
zengyawen 已提交
666

Z
zengyawen 已提交
667 668 669
| 参数名   | 类型                     | 必填 | 说明                                                    |
| -------- | ------------------------ | ---- | ------------------------------------------------------- |
| callback | AsyncCallback\<boolean\> | 是   | 回调函数。<br/>- true:Radio打开<br/>- false:Radio关闭 |
C
clevercong 已提交
670

D
dingxiaochen 已提交
671 672
**错误码:**

D
dingxiaochen 已提交
673 674
以下错误码的详细介绍请参见[ohos.telephony(电话子系统)错误码](../../reference/errorcodes/errorcode-telephony.md)错误码。

D
dingxiaochen 已提交
675 676 677 678 679 680 681 682 683
| 错误码ID |                  错误信息                    |
| -------- | -------------------------------------------- |
| 201      | Permission denied.                           |
| 401      | Parameter error.                             |
| 8300001  | Invalid parameter value.                     |
| 8300002  | Operation failed. Cannot connect to service. |
| 8300003  | System internal error.                       |
| 8300999  | Unknown error code.                          |

Z
zengyawen 已提交
684
**示例:**
C
clevercong 已提交
685

Z
zengyawen 已提交
686
```js
Z
zengyawen 已提交
687 688 689 690
radio.isRadioOn((err, data) => {
    console.log(`callback: err->${JSON.stringify(err)}, data->${JSON.stringify(data)}`);
});
```
C
clevercong 已提交
691 692


C
clevercong 已提交
693
## radio.isRadioOn<sup>7+</sup>
C
clevercong 已提交
694

Y
YOUR_NAME 已提交
695 696
isRadioOn\(slotId: number, callback: AsyncCallback<boolean\>\): void

697
判断指定卡槽位的Radio是否打开。使用callback异步回调。
Y
YOUR_NAME 已提交
698

C
clevercong 已提交
699
**需要权限**:ohos.permission.GET_NETWORK_INFO
Y
YOUR_NAME 已提交
700 701 702 703 704 705 706 707 708 709

**系统能力**:SystemCapability.Telephony.CoreService

**参数:**

| 参数名   | 类型                     | 必填 | 说明                                                    |
| -------- | ------------------------ | ---- | ------------------------------------------------------- |
| slotId   | number                   | 是   | 卡槽ID。<br/>- 0:卡槽1<br/>- 1:卡槽2                  |
| callback | AsyncCallback\<boolean\> | 是   | 回调函数。<br/>- true:Radio打开<br/>- false:Radio关闭 |

D
dingxiaochen 已提交
710 711
**错误码:**

D
dingxiaochen 已提交
712 713
以下错误码的详细介绍请参见[ohos.telephony(电话子系统)错误码](../../reference/errorcodes/errorcode-telephony.md)错误码。

D
dingxiaochen 已提交
714 715 716 717 718 719 720 721 722
| 错误码ID |                  错误信息                    |
| -------- | -------------------------------------------- |
| 201      | Permission denied.                           |
| 401      | Parameter error.                             |
| 8300001  | Invalid parameter value.                     |
| 8300002  | Operation failed. Cannot connect to service. |
| 8300003  | System internal error.                       |
| 8300999  | Unknown error code.                          |

Y
YOUR_NAME 已提交
723 724
**示例:**

Z
zengyawen 已提交
725
```js
Y
YOUR_NAME 已提交
726 727 728 729 730 731 732
let slotId = 0;
radio.isRadioOn(slotId, (err, data) => {
    console.log(`callback: err->${JSON.stringify(err)}, data->${JSON.stringify(data)}`);
});
```


C
clevercong 已提交
733
## radio.isRadioOn<sup>7+</sup>
Y
YOUR_NAME 已提交
734 735

isRadioOn\(slotId?: number\): Promise<boolean\>
C
clevercong 已提交
736

737
判断Radio是否打开。使用Promise异步回调。
C
clevercong 已提交
738

C
clevercong 已提交
739
**需要权限**:ohos.permission.GET_NETWORK_INFO
C
clevercong 已提交
740

Y
YOUR_NAME 已提交
741 742
**系统能力**:SystemCapability.Telephony.CoreService

Y
YOUR_NAME 已提交
743 744 745 746 747 748
**参数:**

| 参数名 | 类型   | 必填 | 说明                                   |
| ------ | ------ | ---- | -------------------------------------- |
| slotId | number | 否   | 卡槽ID。<br/>- 0:卡槽1<br/>- 1:卡槽2<br/>如果不指定slotId,默认判断主卡Radio是否打开 |

Z
zengyawen 已提交
749
**返回值:**
Z
zengyawen 已提交
750

Z
zengyawen 已提交
751 752 753
| 类型               | 说明                                                         |
| ------------------ | ------------------------------------------------------------ |
| Promise\<boolean\> | 以Promise形式返回判断Radio是否打开的结果。<br/>- true:Radio打开<br/>- false:Radio关闭 |
C
clevercong 已提交
754

D
dingxiaochen 已提交
755 756
**错误码:**

D
dingxiaochen 已提交
757 758
以下错误码的详细介绍请参见[ohos.telephony(电话子系统)错误码](../../reference/errorcodes/errorcode-telephony.md)错误码。

D
dingxiaochen 已提交
759 760 761 762 763 764 765 766 767
| 错误码ID |                  错误信息                    |
| -------- | -------------------------------------------- |
| 201      | Permission denied.                           |
| 401      | Parameter error.                             |
| 8300001  | Invalid parameter value.                     |
| 8300002  | Operation failed. Cannot connect to service. |
| 8300003  | System internal error.                       |
| 8300999  | Unknown error code.                          |

Z
zengyawen 已提交
768
**示例:**
C
clevercong 已提交
769

Z
zengyawen 已提交
770
```js
Y
YOUR_NAME 已提交
771 772
let slotId = 0;
let promise = radio.isRadioOn(slotId);
Z
zengyawen 已提交
773 774 775
promise.then(data => {
    console.log(`isRadioOn success, promise: data->${JSON.stringify(data)}`);
}).catch(err => {
776
    console.error(`isRadioOn failed, promise: err->${JSON.stringify(err)}`);
Z
zengyawen 已提交
777 778
});
```
C
clevercong 已提交
779 780


C
clevercong 已提交
781
## radio.getOperatorName<sup>7+</sup>
Y
YOUR_NAME 已提交
782 783 784

getOperatorName\(slotId: number, callback: AsyncCallback<string\>\): void

785
获取运营商名称。使用callback异步回调。
Y
YOUR_NAME 已提交
786 787 788 789 790 791 792 793

**系统能力**:SystemCapability.Telephony.CoreService

**参数:**

| 参数名   | 类型                    | 必填 | 说明                                       |
| -------- | ----------------------- | ---- | ------------------------------------------ |
| slotId   | number                  | 是   | 卡槽ID。<br/>- 0:卡槽1<br/>- 1:卡槽2     |
794
| callback | AsyncCallback\<string\> | 是   | 回调函数,返回运营商名称,例如:中国移动。 |
Y
YOUR_NAME 已提交
795

D
dingxiaochen 已提交
796 797
**错误码:**

D
dingxiaochen 已提交
798 799
以下错误码的详细介绍请参见[ohos.telephony(电话子系统)错误码](../../reference/errorcodes/errorcode-telephony.md)错误码。

D
dingxiaochen 已提交
800 801 802 803 804 805 806 807
| 错误码ID |                 错误信息                     |
| -------- | -------------------------------------------- |
| 401      | Parameter error.                             |
| 8300001  | Invalid parameter value.                     |
| 8300002  | Operation failed. Cannot connect to service. |
| 8300003  | System internal error.                       |
| 8300999  | Unknown error code.                          |

Y
YOUR_NAME 已提交
808 809
**示例:**

Z
zengyawen 已提交
810
```js
Y
YOUR_NAME 已提交
811 812 813 814 815 816 817
let slotId = 0;
radio.getOperatorName(slotId, (err, data) => {
    console.log(`callback: err->${JSON.stringify(err)}, data->${JSON.stringify(data)}`);
});
```


C
clevercong 已提交
818
## radio.getOperatorName<sup>7+</sup>
Y
YOUR_NAME 已提交
819 820 821

getOperatorName\(slotId: number\): Promise<string\>

822
获取运营商名称。使用Promise异步回调。
Y
YOUR_NAME 已提交
823 824 825 826 827 828 829 830 831 832 833 834 835 836 837

**系统能力**:SystemCapability.Telephony.CoreService

**参数:**

| 参数名 | 类型   | 必填 | 说明                                   |
| ------ | ------ | ---- | -------------------------------------- |
| slotId | number | 是   | 卡槽ID。<br/>- 0:卡槽1<br/>- 1:卡槽2 |

**返回值:**

| 类型              | 说明                                                         |
| ----------------- | ------------------------------------------------------------ |
| Promise\<string\> | 以Promise形式返回运营商名称,例如:中国移动。                |

D
dingxiaochen 已提交
838 839
**错误码:**

D
dingxiaochen 已提交
840 841
以下错误码的详细介绍请参见[ohos.telephony(电话子系统)错误码](../../reference/errorcodes/errorcode-telephony.md)错误码。

D
dingxiaochen 已提交
842 843 844 845 846 847 848 849
| 错误码ID |                 错误信息                     |
| -------- | -------------------------------------------- |
| 401      | Parameter error.                             |
| 8300001  | Invalid parameter value.                     |
| 8300002  | Operation failed. Cannot connect to service. |
| 8300003  | System internal error.                       |
| 8300999  | Unknown error code.                          |

Y
YOUR_NAME 已提交
850 851
**示例:**

Z
zengyawen 已提交
852
```js
Y
YOUR_NAME 已提交
853 854 855 856 857
let slotId = 0;
let promise = radio.getOperatorName(slotId);
promise.then(data => {
    console.log(`getOperatorName success, promise: data->${JSON.stringify(data)}`);
}).catch(err => {
858
    console.log(`getOperatorName failed, promise: err->${JSON.stringify(err)}`);
Y
YOUR_NAME 已提交
859 860 861
});
```

Y
YOUR_NAME 已提交
862 863 864 865
## radio.setPrimarySlotId<sup>8+</sup>

setPrimarySlotId(slotId: number, callback: AsyncCallback<void\>): void

866
设置主卡所在卡槽的索引号。使用callback异步回调。
Y
YOUR_NAME 已提交
867

D
dingxiaochen 已提交
868
**系统接口:** 此接口为系统接口。
C
clevercong 已提交
869

Y
YOUR_NAME 已提交
870 871 872 873 874 875 876 877 878
**需要权限**:ohos.permission.SET_TELEPHONY_STATE

**系统能力**:SystemCapability.Telephony.CoreService

**参数:**

| 参数名   | 类型                  | 必填 | 说明                                   |
| -------- | --------------------- | ---- | -------------------------------------- |
| slotId   | number                | 是   | 卡槽ID。<br/>- 0:卡槽1<br/>- 1:卡槽2 |
C
clevercong 已提交
879
| callback | AsyncCallback\<void\> | 是   | 回调函数。                             |
Y
YOUR_NAME 已提交
880

D
dingxiaochen 已提交
881 882
**错误码:**

D
dingxiaochen 已提交
883 884
以下错误码的详细介绍请参见[ohos.telephony(电话子系统)错误码](../../reference/errorcodes/errorcode-telephony.md)错误码。

D
dingxiaochen 已提交
885 886 887 888 889 890 891 892 893 894
| 错误码ID |                  错误信息                    |
| -------- | -------------------------------------------- |
| 201      | Permission denied.                           |
| 401      | Parameter error.                             |
| 8300001  | Invalid parameter value.                     |
| 8300002  | Operation failed. Cannot connect to service. |
| 8300003  | System internal error.                       |
| 8300004  | Do not have sim card.                        |
| 8300999  | Unknown error code.                          |

Y
YOUR_NAME 已提交
895 896 897 898
**示例:**

```js
let slotId = 0;
D
dingxiaochen 已提交
899 900
radio.setPrimarySlotId(slotId, (err) => {
    console.log(`callback: err->${JSON.stringify(err)}`);
Y
YOUR_NAME 已提交
901 902 903 904 905 906 907 908
});
```


## radio.setPrimarySlotId<sup>8+</sup>

setPrimarySlotId\(slotId: number\): Promise\<void\>

909
设置主卡所在卡槽的索引号。使用Promise异步回调。
Y
YOUR_NAME 已提交
910

D
dingxiaochen 已提交
911
**系统接口:** 此接口为系统接口。
C
clevercong 已提交
912

Y
YOUR_NAME 已提交
913 914 915 916 917 918 919 920 921 922 923 924 925 926
**需要权限**:ohos.permission.SET_TELEPHONY_STATE

**系统能力**:SystemCapability.Telephony.CoreService

**参数:**

| 参数名 | 类型   | 必填 | 说明                                   |
| ------ | ------ | ---- | -------------------------------------- |
| slotId | number | 是   | 卡槽ID。<br/>- 0:卡槽1<br/>- 1:卡槽2 |

**返回值:**

| 类型            | 说明                            |
| --------------- | ------------------------------- |
C
clevercong 已提交
927
| Promise\<void\> | 以Promise形式异步返回设置结果。 |
Y
YOUR_NAME 已提交
928

D
dingxiaochen 已提交
929 930
**错误码:**

D
dingxiaochen 已提交
931 932
以下错误码的详细介绍请参见[ohos.telephony(电话子系统)错误码](../../reference/errorcodes/errorcode-telephony.md)错误码。

D
dingxiaochen 已提交
933 934 935 936 937 938 939 940 941 942
| 错误码ID |                  错误信息                    |
| -------- | -------------------------------------------- |
| 201      | Permission denied.                           |
| 401      | Parameter error.                             |
| 8300001  | Invalid parameter value.                     |
| 8300002  | Operation failed. Cannot connect to service. |
| 8300003  | System internal error.                       |
| 8300004  | Do not have sim card.                        |
| 8300999  | Unknown error code.                          |

Y
YOUR_NAME 已提交
943 944 945 946 947
**示例:**

```js
let slotId = 0;
let promise = radio.setPrimarySlotId(slotId);
D
dingxiaochen 已提交
948 949 950
promise.then(() => {
    console.log(`setPrimarySlotId success.`);
}).catch((err) => {
951
    console.log(`setPrimarySlotId failed, promise: err->${JSON.stringify(err)}`);
Y
YOUR_NAME 已提交
952 953 954 955 956 957 958
});
```

## radio.getIMEI<sup>8+</sup>

getIMEI(callback: AsyncCallback<string\>): void

959
获取设备的指定卡槽的IMEI。使用callback异步回调。
Y
YOUR_NAME 已提交
960

D
dingxiaochen 已提交
961
**系统接口:** 此接口为系统接口。
C
clevercong 已提交
962

Y
YOUR_NAME 已提交
963 964 965 966 967 968 969 970 971 972
**需要权限**:ohos.permission.GET_TELEPHONY_STATE

**系统能力**:SystemCapability.Telephony.CoreService

**参数:**

| 参数名   | 类型                    | 必填 | 说明                                       |
| -------- | ----------------------- | ---- | ------------------------------------------ |
| callback | AsyncCallback\<string\> | 是   | 回调函数,如果IMEI不存在,则返回空字符串。 |

D
dingxiaochen 已提交
973 974
**错误码:**

D
dingxiaochen 已提交
975 976
以下错误码的详细介绍请参见[ohos.telephony(电话子系统)错误码](../../reference/errorcodes/errorcode-telephony.md)错误码。

D
dingxiaochen 已提交
977 978 979 980 981 982 983 984 985
| 错误码ID |                  错误信息                    |
| -------- | -------------------------------------------- |
| 201      | Permission denied.                           |
| 401      | Parameter error.                             |
| 8300001  | Invalid parameter value.                     |
| 8300002  | Operation failed. Cannot connect to service. |
| 8300003  | System internal error.                       |
| 8300999  | Unknown error code.                          |

Y
YOUR_NAME 已提交
986 987 988 989 990 991 992 993 994 995 996 997 998
**示例:**

```js
radio.getIMEI((err, data) => {
    console.log(`callback: err->${JSON.stringify(err)}, data->${JSON.stringify(data)}`);
});
```


## radio.getIMEI<sup>8+</sup>

getIMEI(slotId: number, callback: AsyncCallback<string\>): void

999
获取设备的指定卡槽的IMEI。使用callback异步回调。
Y
YOUR_NAME 已提交
1000

D
dingxiaochen 已提交
1001
**系统接口:** 此接口为系统接口。
C
clevercong 已提交
1002

Y
YOUR_NAME 已提交
1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013
**需要权限**:ohos.permission.GET_TELEPHONY_STATE

**系统能力**:SystemCapability.Telephony.CoreService

**参数:**

| 参数名   | 类型                    | 必填 | 说明                                       |
| -------- | ----------------------- | ---- | ------------------------------------------ |
| slotId   | number                  | 是   | 卡槽ID。<br/>- 0:卡槽1<br/>- 1:卡槽2     |
| callback | AsyncCallback\<string\> | 是   | 回调函数,如果IMEI不存在,则返回空字符串。 |

D
dingxiaochen 已提交
1014 1015
**错误码:**

D
dingxiaochen 已提交
1016 1017
以下错误码的详细介绍请参见[ohos.telephony(电话子系统)错误码](../../reference/errorcodes/errorcode-telephony.md)错误码。

D
dingxiaochen 已提交
1018 1019 1020 1021 1022 1023 1024 1025 1026
| 错误码ID |                  错误信息                    |
| -------- | -------------------------------------------- |
| 201      | Permission denied.                           |
| 401      | Parameter error.                             |
| 8300001  | Invalid parameter value.                     |
| 8300002  | Operation failed. Cannot connect to service. |
| 8300003  | System internal error.                       |
| 8300999  | Unknown error code.                          |

Y
YOUR_NAME 已提交
1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040
**示例:**

```js
let slotId = 0;
radio.getIMEI(slotId, (err, data) => {
    console.log(`callback: err->${JSON.stringify(err)}, data->${JSON.stringify(data)}`);
});
```


## radio.getIMEI<sup>8+</sup>

getIMEI(slotId?: number): Promise<string\>

1041
获取设备的指定卡槽的IMEI。使用Promise异步回调。
Y
YOUR_NAME 已提交
1042

D
dingxiaochen 已提交
1043
**系统接口:** 此接口为系统接口。
C
clevercong 已提交
1044

Y
YOUR_NAME 已提交
1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058
**需要权限**:ohos.permission.GET_TELEPHONY_STATE

**系统能力**:SystemCapability.Telephony.CoreService

**参数:**

| 参数名 | 类型   | 必填 | 说明                                   |
| ------ | ------ | ---- | -------------------------------------- |
| slotId | number | 否   | 卡槽ID。<br/>- 0:卡槽1<br/>- 1:卡槽2 |

**返回值:**

| 类型              | 说明                                       |
| ----------------- | ------------------------------------------ |
C
clevercong 已提交
1059
| Promise\<string\> | 以Promise形式异步返回IMEI;如果IMEI不存在,则返回空字符串。 |
Y
YOUR_NAME 已提交
1060

D
dingxiaochen 已提交
1061 1062
**错误码:**

D
dingxiaochen 已提交
1063 1064
以下错误码的详细介绍请参见[ohos.telephony(电话子系统)错误码](../../reference/errorcodes/errorcode-telephony.md)错误码。

D
dingxiaochen 已提交
1065 1066 1067 1068 1069 1070 1071 1072 1073
| 错误码ID |                  错误信息                    |
| -------- | -------------------------------------------- |
| 201      | Permission denied.                           |
| 401      | Parameter error.                             |
| 8300001  | Invalid parameter value.                     |
| 8300002  | Operation failed. Cannot connect to service. |
| 8300003  | System internal error.                       |
| 8300999  | Unknown error code.                          |

Y
YOUR_NAME 已提交
1074 1075 1076 1077 1078 1079 1080 1081
**示例:**

```js
let slotId = 0;
let promise = radio.getIMEI(slotId);
promise.then(data => {
    console.log(`getIMEI success, promise: data->${JSON.stringify(data)}`);
}).catch(err => {
1082
    console.error(`getIMEI failed, promise: err->${JSON.stringify(err)}`);
Y
YOUR_NAME 已提交
1083 1084 1085 1086 1087 1088 1089
});
```

## radio.getMEID<sup>8+</sup>

getMEID(callback: AsyncCallback<string\>): void

1090
获取设备的指定卡槽的MEID。使用callback异步回调。
Y
YOUR_NAME 已提交
1091

D
dingxiaochen 已提交
1092
**系统接口:** 此接口为系统接口。
C
clevercong 已提交
1093

Y
YOUR_NAME 已提交
1094 1095 1096 1097 1098 1099 1100 1101 1102 1103
**需要权限**:ohos.permission.GET_TELEPHONY_STATE

**系统能力**:SystemCapability.Telephony.CoreService

**参数:**

| 参数名   | 类型                    | 必填 | 说明       |
| -------- | ----------------------- | ---- | ---------- |
| callback | AsyncCallback\<string\> | 是   | 回调函数。 |

D
dingxiaochen 已提交
1104 1105
**错误码:**

D
dingxiaochen 已提交
1106 1107
以下错误码的详细介绍请参见[ohos.telephony(电话子系统)错误码](../../reference/errorcodes/errorcode-telephony.md)错误码。

D
dingxiaochen 已提交
1108 1109 1110 1111 1112 1113 1114 1115 1116
| 错误码ID |                  错误信息                    |
| -------- | -------------------------------------------- |
| 201      | Permission denied.                           |
| 401      | Parameter error.                             |
| 8300001  | Invalid parameter value.                     |
| 8300002  | Operation failed. Cannot connect to service. |
| 8300003  | System internal error.                       |
| 8300999  | Unknown error code.                          |

Y
YOUR_NAME 已提交
1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129
**示例:**

```js
radio.getMEID((err, data) => {
    console.log(`callback: err->${JSON.stringify(err)}, data->${JSON.stringify(data)}`);
});
```


## radio.getMEID<sup>8+</sup>

getMEID(slotId: number, callback: AsyncCallback<string\>): void

1130
获取设备的指定卡槽的MEID。使用callback异步回调。
Y
YOUR_NAME 已提交
1131

D
dingxiaochen 已提交
1132
**系统接口:** 此接口为系统接口。
C
clevercong 已提交
1133

Y
YOUR_NAME 已提交
1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144
**需要权限**:ohos.permission.GET_TELEPHONY_STATE

**系统能力**:SystemCapability.Telephony.CoreService

**参数:**

| 参数名   | 类型                    | 必填 | 说明                                   |
| -------- | ----------------------- | ---- | -------------------------------------- |
| slotId   | number                  | 是   | 卡槽ID。<br/>- 0:卡槽1<br/>- 1:卡槽2 |
| callback | AsyncCallback\<string\> | 是   | 回调函数。                             |

D
dingxiaochen 已提交
1145 1146
**错误码:**

D
dingxiaochen 已提交
1147 1148
以下错误码的详细介绍请参见[ohos.telephony(电话子系统)错误码](../../reference/errorcodes/errorcode-telephony.md)错误码。

D
dingxiaochen 已提交
1149 1150 1151 1152 1153 1154 1155 1156 1157
| 错误码ID |                  错误信息                    |
| -------- | -------------------------------------------- |
| 201      | Permission denied.                           |
| 401      | Parameter error.                             |
| 8300001  | Invalid parameter value.                     |
| 8300002  | Operation failed. Cannot connect to service. |
| 8300003  | System internal error.                       |
| 8300999  | Unknown error code.                          |

Y
YOUR_NAME 已提交
1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171
**示例:**

```js
let slotId = 0;
radio.getMEID(slotId, (err, data) => {
    console.log(`callback: err->${JSON.stringify(err)}, data->${JSON.stringify(data)}`);
});
```


## radio.getMEID<sup>8+</sup>

getMEID(slotId?: number): Promise<string\>

1172
获取设备的指定卡槽的MEID。使用Promise异步回调。
Y
YOUR_NAME 已提交
1173

D
dingxiaochen 已提交
1174
**系统接口:** 此接口为系统接口。
C
clevercong 已提交
1175

Y
YOUR_NAME 已提交
1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191
**需要权限**:ohos.permission.GET_TELEPHONY_STATE

**系统能力**:SystemCapability.Telephony.CoreService

**参数:**

| 参数名 | 类型   | 必填 | 说明                                   |
| ------ | ------ | ---- | -------------------------------------- |
| slotId | number | 否   | 卡槽ID。<br/>- 0:卡槽1<br/>- 1:卡槽2 |

**返回值:**

| 类型              | 说明                                    |
| ----------------- | --------------------------------------- |
| Promise\<string\> | 以Promise形式返回设备的指定卡槽的MEID。 |

D
dingxiaochen 已提交
1192 1193
**错误码:**

D
dingxiaochen 已提交
1194 1195
以下错误码的详细介绍请参见[ohos.telephony(电话子系统)错误码](../../reference/errorcodes/errorcode-telephony.md)错误码。

D
dingxiaochen 已提交
1196 1197 1198 1199 1200 1201 1202 1203 1204
| 错误码ID |                  错误信息                    |
| -------- | -------------------------------------------- |
| 201      | Permission denied.                           |
| 401      | Parameter error.                             |
| 8300001  | Invalid parameter value.                     |
| 8300002  | Operation failed. Cannot connect to service. |
| 8300003  | System internal error.                       |
| 8300999  | Unknown error code.                          |

Y
YOUR_NAME 已提交
1205 1206 1207 1208 1209 1210 1211 1212
**示例:**

```js
let slotId = 0;
let promise = radio.getMEID(slotId);
promise.then(data => {
    console.log(`getMEID success, promise: data->${JSON.stringify(data)}`);
}).catch(err => {
1213
    console.error(`getMEID failed, promise: err->${JSON.stringify(err)}`);
Y
YOUR_NAME 已提交
1214 1215 1216 1217 1218 1219 1220
});
```

## radio.getUniqueDeviceId<sup>8+</sup>

getUniqueDeviceId(callback: AsyncCallback<string\>): void

1221
获取设备的指定卡槽的唯一设备ID。使用callback异步回调。
Y
YOUR_NAME 已提交
1222

D
dingxiaochen 已提交
1223
**系统接口:** 此接口为系统接口。
C
clevercong 已提交
1224

Y
YOUR_NAME 已提交
1225 1226 1227 1228 1229 1230 1231 1232 1233 1234
**需要权限**:ohos.permission.GET_TELEPHONY_STATE

**系统能力**:SystemCapability.Telephony.CoreService

**参数:**

| 参数名   | 类型                    | 必填 | 说明       |
| -------- | ----------------------- | ---- | ---------- |
| callback | AsyncCallback\<string\> | 是   | 回调函数。 |

D
dingxiaochen 已提交
1235 1236
**错误码:**

D
dingxiaochen 已提交
1237 1238
以下错误码的详细介绍请参见[ohos.telephony(电话子系统)错误码](../../reference/errorcodes/errorcode-telephony.md)错误码。

D
dingxiaochen 已提交
1239 1240 1241 1242 1243 1244 1245 1246 1247
| 错误码ID |                  错误信息                    |
| -------- | -------------------------------------------- |
| 201      | Permission denied.                           |
| 401      | Parameter error.                             |
| 8300001  | Invalid parameter value.                     |
| 8300002  | Operation failed. Cannot connect to service. |
| 8300003  | System internal error.                       |
| 8300999  | Unknown error code.                          |

Y
YOUR_NAME 已提交
1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260
**示例:**

```js
radio.getUniqueDeviceId((err, data) => {
    console.log(`callback: err->${JSON.stringify(err)}, data->${JSON.stringify(data)}`);
});
```


## radio.getUniqueDeviceId<sup>8+</sup>

getUniqueDeviceId(slotId: number, callback: AsyncCallback<string\>): void

1261
获取设备的指定卡槽的唯一设备ID。使用callback异步回调。
Y
YOUR_NAME 已提交
1262

D
dingxiaochen 已提交
1263
**系统接口:** 此接口为系统接口。
C
clevercong 已提交
1264

Y
YOUR_NAME 已提交
1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275
**需要权限**:ohos.permission.GET_TELEPHONY_STATE

**系统能力**:SystemCapability.Telephony.CoreService

**参数:**

| 参数名   | 类型                    | 必填 | 说明                                   |
| -------- | ----------------------- | ---- | -------------------------------------- |
| slotId   | number                  | 是   | 卡槽ID。<br/>- 0:卡槽1<br/>- 1:卡槽2 |
| callback | AsyncCallback\<string\> | 是   | 回调函数。                             |

D
dingxiaochen 已提交
1276 1277
**错误码:**

D
dingxiaochen 已提交
1278 1279
以下错误码的详细介绍请参见[ohos.telephony(电话子系统)错误码](../../reference/errorcodes/errorcode-telephony.md)错误码。

D
dingxiaochen 已提交
1280 1281 1282 1283 1284 1285 1286 1287 1288
| 错误码ID |                  错误信息                    |
| -------- | -------------------------------------------- |
| 201      | Permission denied.                           |
| 401      | Parameter error.                             |
| 8300001  | Invalid parameter value.                     |
| 8300002  | Operation failed. Cannot connect to service. |
| 8300003  | System internal error.                       |
| 8300999  | Unknown error code.                          |

Y
YOUR_NAME 已提交
1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302
**示例:**

```js
let slotId = 0;
radio.getUniqueDeviceId(slotId, (err, data) => {
    console.log(`callback: err->${JSON.stringify(err)}, data->${JSON.stringify(data)}`);
});
```


## radio.getUniqueDeviceId<sup>8+</sup>

getUniqueDeviceId(slotId?: number): Promise<string\>

1303
获取设备的指定卡槽的唯一设备ID。使用Promise异步回调。
Y
YOUR_NAME 已提交
1304

D
dingxiaochen 已提交
1305
**系统接口:** 此接口为系统接口。
C
clevercong 已提交
1306

Y
YOUR_NAME 已提交
1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322
**需要权限**:ohos.permission.GET_TELEPHONY_STATE

**系统能力**:SystemCapability.Telephony.CoreService

**参数:**

| 参数名 | 类型   | 必填 | 说明                                   |
| ------ | ------ | ---- | -------------------------------------- |
| slotId | number | 否   | 卡槽ID。<br/>- 0:卡槽1<br/>- 1:卡槽2 |

**返回值:**

| 类型              | 说明                                          |
| ----------------- | --------------------------------------------- |
| Promise\<string\> | 以Promise形式返回设备的指定卡槽的唯一设备ID。 |

D
dingxiaochen 已提交
1323 1324
**错误码:**

D
dingxiaochen 已提交
1325 1326
以下错误码的详细介绍请参见[ohos.telephony(电话子系统)错误码](../../reference/errorcodes/errorcode-telephony.md)错误码。

D
dingxiaochen 已提交
1327 1328 1329 1330 1331 1332 1333 1334 1335
| 错误码ID |                  错误信息                    |
| -------- | -------------------------------------------- |
| 201      | Permission denied.                           |
| 401      | Parameter error.                             |
| 8300001  | Invalid parameter value.                     |
| 8300002  | Operation failed. Cannot connect to service. |
| 8300003  | System internal error.                       |
| 8300999  | Unknown error code.                          |

Y
YOUR_NAME 已提交
1336 1337 1338 1339 1340 1341 1342 1343
**示例:**

```js
let slotId = 0;
let promise = radio.getUniqueDeviceId(slotId);
promise.then(data => {
    console.log(`getUniqueDeviceId success, promise: data->${JSON.stringify(data)}`);
}).catch(err => {
1344
    console.error(`getUniqueDeviceId failed, promise: err->${JSON.stringify(err)}`);
Y
YOUR_NAME 已提交
1345 1346
});
```
Y
YOUR_NAME 已提交
1347

C
clevercong 已提交
1348 1349 1350 1351
## radio.sendUpdateCellLocationRequest<sup>8+</sup>

sendUpdateCellLocationRequest\(callback: AsyncCallback<void\>\): void

1352
发送更新小区位置请求。使用callback异步回调。
C
clevercong 已提交
1353

D
dingxiaochen 已提交
1354
**系统接口:** 此接口为系统接口。
C
clevercong 已提交
1355

D
dingxiaochen 已提交
1356
**需要权限**:ohos.permission.LOCATION 和 ohos.permission.APPROXIMATELY_LOCATION
D
dingxiaochen 已提交
1357

C
clevercong 已提交
1358 1359 1360 1361 1362 1363 1364 1365
**系统能力**:SystemCapability.Telephony.CoreService

**参数:**

| 参数名   | 类型                  | 必填 | 说明       |
| -------- | --------------------- | ---- | ---------- |
| callback | AsyncCallback\<void\> | 是   | 回调函数。 |

D
dingxiaochen 已提交
1366 1367
**错误码:**

D
dingxiaochen 已提交
1368 1369
以下错误码的详细介绍请参见[ohos.telephony(电话子系统)错误码](../../reference/errorcodes/errorcode-telephony.md)错误码。

D
dingxiaochen 已提交
1370 1371 1372 1373 1374 1375 1376 1377 1378
| 错误码ID |                  错误信息                    |
| -------- | -------------------------------------------- |
| 201      | Permission denied.                           |
| 401      | Parameter error.                             |
| 8300001  | Invalid parameter value.                     |
| 8300002  | Operation failed. Cannot connect to service. |
| 8300003  | System internal error.                       |
| 8300999  | Unknown error code.                          |

C
clevercong 已提交
1379 1380 1381
**示例:**

```js
D
dingxiaochen 已提交
1382 1383
radio.sendUpdateCellLocationRequest((err) => {
    console.log(`callback: err->${JSON.stringify(err)}`);
C
clevercong 已提交
1384 1385 1386 1387 1388
});
```

## radio.sendUpdateCellLocationRequest<sup>8+</sup>

Y
YOUR_NAME 已提交
1389 1390
sendUpdateCellLocationRequest\(slotId: number, callback: AsyncCallback<void\>\): void

1391
发送更新小区位置请求。使用callback异步回调。
Y
YOUR_NAME 已提交
1392

D
dingxiaochen 已提交
1393
**系统接口:** 此接口为系统接口。
Y
YOUR_NAME 已提交
1394

D
dingxiaochen 已提交
1395
**需要权限**:ohos.permission.LOCATION 和 ohos.permission.APPROXIMATELY_LOCATION
D
dingxiaochen 已提交
1396

Y
YOUR_NAME 已提交
1397 1398 1399 1400 1401 1402 1403 1404 1405
**系统能力**:SystemCapability.Telephony.CoreService

**参数:**

| 参数名   | 类型                  | 必填 | 说明       |
| -------- | --------------------- | ---- | ---------- |
| slotId | number | 是   | 卡槽ID。<br/>- 0:卡槽1<br/>- 1:卡槽2 |
| callback | AsyncCallback\<void\> | 是   | 回调函数。 |

D
dingxiaochen 已提交
1406 1407
**错误码:**

D
dingxiaochen 已提交
1408 1409
以下错误码的详细介绍请参见[ohos.telephony(电话子系统)错误码](../../reference/errorcodes/errorcode-telephony.md)错误码。

D
dingxiaochen 已提交
1410 1411 1412 1413 1414 1415 1416 1417 1418
| 错误码ID |                  错误信息                    |
| -------- | -------------------------------------------- |
| 201      | Permission denied.                           |
| 401      | Parameter error.                             |
| 8300001  | Invalid parameter value.                     |
| 8300002  | Operation failed. Cannot connect to service. |
| 8300003  | System internal error.                       |
| 8300999  | Unknown error code.                          |

Y
YOUR_NAME 已提交
1419 1420 1421 1422
**示例:**

```js
let slotId = 0;
D
dingxiaochen 已提交
1423 1424
radio.sendUpdateCellLocationRequest(slotId, (err) => {
    console.log(`callback: err->${JSON.stringify(err)}`);
Y
YOUR_NAME 已提交
1425 1426 1427 1428 1429 1430
});
```

## radio.sendUpdateCellLocationRequest<sup>8+</sup>

sendUpdateCellLocationRequest\(slotId?: number): Promise<void\>
C
clevercong 已提交
1431

1432
发送更新小区位置请求。使用Promise异步回调。
C
clevercong 已提交
1433

D
dingxiaochen 已提交
1434
**系统接口:** 此接口为系统接口。
C
clevercong 已提交
1435

D
dingxiaochen 已提交
1436
**需要权限**:ohos.permission.LOCATION 和 ohos.permission.APPROXIMATELY_LOCATION
D
dingxiaochen 已提交
1437

C
clevercong 已提交
1438 1439
**系统能力**:SystemCapability.Telephony.CoreService

Y
YOUR_NAME 已提交
1440 1441 1442 1443 1444 1445
**参数:**

| 参数名 | 类型   | 必填 | 说明                                   |
| ------ | ------ | ---- | -------------------------------------- |
| slotId | number | 否   | 卡槽ID。<br/>- 0:卡槽1<br/>- 1:卡槽2 |

C
clevercong 已提交
1446 1447 1448 1449 1450 1451
**返回值:**

| 类型            | 说明                    |
| --------------- | ----------------------- |
| Promise\<void\> | 以Promise形式返回结果。 |

D
dingxiaochen 已提交
1452 1453
**错误码:**

D
dingxiaochen 已提交
1454 1455
以下错误码的详细介绍请参见[ohos.telephony(电话子系统)错误码](../../reference/errorcodes/errorcode-telephony.md)错误码。

D
dingxiaochen 已提交
1456 1457 1458 1459 1460 1461 1462 1463 1464
| 错误码ID |                  错误信息                    |
| -------- | -------------------------------------------- |
| 201      | Permission denied.                           |
| 401      | Parameter error.                             |
| 8300001  | Invalid parameter value.                     |
| 8300002  | Operation failed. Cannot connect to service. |
| 8300003  | System internal error.                       |
| 8300999  | Unknown error code.                          |

C
clevercong 已提交
1465 1466 1467
**示例:**

```js
Y
YOUR_NAME 已提交
1468
let slotId = 0;
D
dingxiaochen 已提交
1469 1470 1471
radio.sendUpdateCellLocationRequest(slotId).then(() => {
    console.log(`sendUpdateCellLocationRequest success.`);
}).catch((err) => {
1472
    console.log(`sendUpdateCellLocationRequest failed, promise: err->${JSON.stringify(err)}`);
C
clevercong 已提交
1473 1474 1475 1476 1477 1478 1479
});
```

## radio.getCellInformation<sup>8+</sup>

getCellInformation(callback: AsyncCallback<Array<CellInformation\>>): void

1480
获取小区信息。使用callback异步回调。
C
clevercong 已提交
1481

D
dingxiaochen 已提交
1482
**系统接口:** 此接口为系统接口。
C
clevercong 已提交
1483

D
dingxiaochen 已提交
1484
**需要权限**:ohos.permission.LOCATION 和 ohos.permission.APPROXIMATELY_LOCATION
C
clevercong 已提交
1485 1486 1487 1488 1489 1490 1491

**系统能力**:SystemCapability.Telephony.CoreService

**参数:**

| 参数名   | 类型                                                         | 必填 | 说明                     |
| -------- | ------------------------------------------------------------ | ---- | ------------------------ |
1492
| callback | AsyncCallback\<Array<[CellInformation](#cellinformation8)\>\> | 是   | 回调函数。 |
C
clevercong 已提交
1493

D
dingxiaochen 已提交
1494 1495
**错误码:**

D
dingxiaochen 已提交
1496 1497
以下错误码的详细介绍请参见[ohos.telephony(电话子系统)错误码](../../reference/errorcodes/errorcode-telephony.md)错误码。

D
dingxiaochen 已提交
1498 1499 1500 1501 1502 1503 1504 1505 1506
| 错误码ID |                  错误信息                    |
| -------- | -------------------------------------------- |
| 201      | Permission denied.                           |
| 401      | Parameter error.                             |
| 8300001  | Invalid parameter value.                     |
| 8300002  | Operation failed. Cannot connect to service. |
| 8300003  | System internal error.                       |
| 8300999  | Unknown error code.                          |

C
clevercong 已提交
1507 1508 1509 1510 1511 1512 1513 1514 1515 1516 1517 1518 1519
**示例:**

```js
radio.getCellInformation((err, data) => {
    console.log(`callback: err->${JSON.stringify(err)}, data->${JSON.stringify(data)}`);
});
```


## radio.getCellInformation<sup>8+</sup>

getCellInformation(slotId: number, callback: AsyncCallback<Array<CellInformation\>\>): void

1520
获取小区信息。使用callback异步回调。
C
clevercong 已提交
1521

D
dingxiaochen 已提交
1522
**系统接口:** 此接口为系统接口。
C
clevercong 已提交
1523

D
dingxiaochen 已提交
1524
**需要权限**:ohos.permission.LOCATION 和 ohos.permission.APPROXIMATELY_LOCATION
C
clevercong 已提交
1525 1526 1527 1528 1529 1530 1531 1532

**系统能力**:SystemCapability.Telephony.CoreService

**参数:**

| 参数名   | 类型                                                         | 必填 | 说明                                   |
| -------- | ------------------------------------------------------------ | ---- | -------------------------------------- |
| slotId   | number                                                       | 是   | 卡槽ID。<br/>- 0:卡槽1<br/>- 1:卡槽2 |
1533
| callback | AsyncCallback\<Array<[CellInformation](#cellinformation8)\>\> | 是   | 回调函数。               |
C
clevercong 已提交
1534

D
dingxiaochen 已提交
1535 1536
**错误码:**

D
dingxiaochen 已提交
1537 1538
以下错误码的详细介绍请参见[ohos.telephony(电话子系统)错误码](../../reference/errorcodes/errorcode-telephony.md)错误码。

D
dingxiaochen 已提交
1539 1540 1541 1542 1543 1544 1545 1546 1547
| 错误码ID |                  错误信息                    |
| -------- | -------------------------------------------- |
| 201      | Permission denied.                           |
| 401      | Parameter error.                             |
| 8300001  | Invalid parameter value.                     |
| 8300002  | Operation failed. Cannot connect to service. |
| 8300003  | System internal error.                       |
| 8300999  | Unknown error code.                          |

C
clevercong 已提交
1548 1549 1550 1551 1552 1553 1554 1555 1556 1557 1558 1559 1560 1561
**示例:**

```js
let slotId = 0;
radio.getCellInformation(slotId, (err, data) => {
    console.log(`callback: err->${JSON.stringify(err)}, data->${JSON.stringify(data)}`);
});
```


## radio.getCellInformation<sup>8+</sup>

getCellInformation(slotId?: number): Promise<Array<CellInformation\>\>

1562
获取小区信息。使用Promise异步回调。
C
clevercong 已提交
1563

D
dingxiaochen 已提交
1564
**系统接口:** 此接口为系统接口。
C
clevercong 已提交
1565

D
dingxiaochen 已提交
1566
**需要权限**:ohos.permission.LOCATION 和 ohos.permission.APPROXIMATELY_LOCATION
C
clevercong 已提交
1567 1568 1569 1570 1571 1572 1573 1574 1575 1576 1577

**系统能力**:SystemCapability.Telephony.CoreService

**参数:**

| 参数名 | 类型   | 必填 | 说明                                   |
| ------ | ------ | ---- | -------------------------------------- |
| slotId | number | 否   | 卡槽ID。<br/>- 0:卡槽1<br/>- 1:卡槽2 |

**返回值:**

C
update  
clevercong 已提交
1578 1579 1580
| 类型                                                    | 说明                    |
| ------------------------------------------------------- | ----------------------- |
| Promise\<Array<[CellInformation](#cellinformation8)\>\> | 以Promise形式返回结果。 |
C
clevercong 已提交
1581

D
dingxiaochen 已提交
1582 1583
**错误码:**

D
dingxiaochen 已提交
1584 1585
以下错误码的详细介绍请参见[ohos.telephony(电话子系统)错误码](../../reference/errorcodes/errorcode-telephony.md)错误码。

D
dingxiaochen 已提交
1586 1587 1588 1589 1590 1591 1592 1593 1594
| 错误码ID |                  错误信息                    |
| -------- | -------------------------------------------- |
| 201      | Permission denied.                           |
| 401      | Parameter error.                             |
| 8300001  | Invalid parameter value.                     |
| 8300002  | Operation failed. Cannot connect to service. |
| 8300003  | System internal error.                       |
| 8300999  | Unknown error code.                          |

C
clevercong 已提交
1595 1596 1597 1598 1599 1600 1601 1602
**示例:**

```js
let slotId = 0;
let promise = radio.getCellInformation(slotId);
promise.then(data => {
    console.log(`getCellInformation success, promise: data->${JSON.stringify(data)}`);
}).catch(err => {
1603
    console.error(`getCellInformation failed, promise: err->${JSON.stringify(err)}`);
C
clevercong 已提交
1604 1605 1606 1607 1608 1609 1610
});
```

## radio.setNetworkSelectionMode

setNetworkSelectionMode\(options: NetworkSelectionModeOptions, callback: AsyncCallback<void\>\): void

1611
设置网络选择模式。使用callback异步回调。
C
clevercong 已提交
1612

D
dingxiaochen 已提交
1613
**系统接口:** 此接口为系统接口。
C
clevercong 已提交
1614 1615 1616 1617 1618 1619 1620 1621 1622

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

**系统能力**:SystemCapability.Telephony.CoreService

**参数:**

| 参数名   | 类型                                                        | 必填 | 说明               |
| -------- | ----------------------------------------------------------- | ---- | ------------------ |
C
update  
clevercong 已提交
1623
| options  | [NetworkSelectionModeOptions](#networkselectionmodeoptions) | 是   | 网络选择模式选项。 |
C
clevercong 已提交
1624 1625
| callback | AsyncCallback\<void\>                                       | 是   | 回调函数。         |

D
dingxiaochen 已提交
1626 1627
**错误码:**

D
dingxiaochen 已提交
1628 1629
以下错误码的详细介绍请参见[ohos.telephony(电话子系统)错误码](../../reference/errorcodes/errorcode-telephony.md)错误码。

D
dingxiaochen 已提交
1630 1631 1632 1633 1634 1635 1636 1637 1638
| 错误码ID |                  错误信息                    |
| -------- | -------------------------------------------- |
| 201      | Permission denied.                           |
| 401      | Parameter error.                             |
| 8300001  | Invalid parameter value.                     |
| 8300002  | Operation failed. Cannot connect to service. |
| 8300003  | System internal error.                       |
| 8300999  | Unknown error code.                          |

C
clevercong 已提交
1639 1640 1641 1642 1643 1644
**示例:**

```js
let networkInformation={
    operatorName: "中国移动",
    operatorNumeric: "898600",
D
dingxiaochen 已提交
1645
    state: radio.NetworkInformationState.NETWORK_AVAILABLE,
C
clevercong 已提交
1646 1647 1648
    radioTech: "CS"
}
let networkSelectionModeOptions={
D
dingxiaochen 已提交
1649 1650
    slotId: 0,
    selectMode: radio.NetworkSelectionMode.NETWORK_SELECTION_AUTOMATIC,
C
clevercong 已提交
1651 1652 1653
    networkInformation: networkInformation,
    resumeSelection: true
}
D
dingxiaochen 已提交
1654 1655
radio.setNetworkSelectionMode(networkSelectionModeOptions, (err) => {
    console.log(`callback: err->${JSON.stringify(err)}`);
C
clevercong 已提交
1656 1657 1658 1659 1660 1661 1662
});
```

## radio.setNetworkSelectionMode

setNetworkSelectionMode\(options: NetworkSelectionModeOptions\): Promise<void\>

1663
设置网络选择模式。使用Promise异步回调。
C
clevercong 已提交
1664

D
dingxiaochen 已提交
1665
**系统接口:** 此接口为系统接口。
C
clevercong 已提交
1666 1667 1668 1669 1670 1671 1672 1673 1674

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

**系统能力**:SystemCapability.Telephony.CoreService

**参数:**

| 参数名  | 类型                                                        | 必填 | 说明               |
| ------- | ----------------------------------------------------------- | ---- | ------------------ |
C
update  
clevercong 已提交
1675
| options | [NetworkSelectionModeOptions](#networkselectionmodeoptions) | 是   | 网络选择模式选项。 |
C
clevercong 已提交
1676 1677 1678 1679 1680 1681 1682

**返回值:**

| 类型            | 说明                    |
| --------------- | ----------------------- |
| Promise\<void\> | 以Promise形式返回结果。 |

D
dingxiaochen 已提交
1683 1684
**错误码:**

D
dingxiaochen 已提交
1685 1686
以下错误码的详细介绍请参见[ohos.telephony(电话子系统)错误码](../../reference/errorcodes/errorcode-telephony.md)错误码。

D
dingxiaochen 已提交
1687 1688 1689 1690 1691 1692 1693 1694 1695
| 错误码ID |                  错误信息                    |
| -------- | -------------------------------------------- |
| 201      | Permission denied.                           |
| 401      | Parameter error.                             |
| 8300001  | Invalid parameter value.                     |
| 8300002  | Operation failed. Cannot connect to service. |
| 8300003  | System internal error.                       |
| 8300999  | Unknown error code.                          |

C
clevercong 已提交
1696 1697 1698 1699 1700 1701
**示例:**

```js
let networkInformation={
    operatorName: "中国移动",
    operatorNumeric: "898600",
D
dingxiaochen 已提交
1702
    state: radio.NetworkInformationState.NETWORK_AVAILABLE,
C
clevercong 已提交
1703 1704 1705
    radioTech: "CS"
}
let networkSelectionModeOptions={
D
dingxiaochen 已提交
1706 1707
    slotId: 0,
    selectMode: radio.NetworkSelectionMode.NETWORK_SELECTION_AUTOMATIC,
C
clevercong 已提交
1708 1709 1710 1711
    networkInformation: networkInformation,
    resumeSelection: true
}
let promise = radio.setNetworkSelectionMode(networkSelectionModeOptions);
D
dingxiaochen 已提交
1712 1713 1714
promise.then(() => {
    console.log(`setNetworkSelectionMode success.`);
}).catch((err) => {
1715
    console.log(`setNetworkSelectionMode failed, promise: err->${JSON.stringify(err)}`);
C
clevercong 已提交
1716 1717 1718 1719 1720 1721 1722
});
```

## radio.getNetworkSearchInformation

getNetworkSearchInformation\(slotId: number, callback: AsyncCallback<NetworkSearchResult\>\): void

1723
获取网络搜索信息。使用callback异步回调。
C
clevercong 已提交
1724

D
dingxiaochen 已提交
1725
**系统接口:** 此接口为系统接口。
C
clevercong 已提交
1726 1727 1728 1729 1730 1731 1732 1733 1734 1735

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

**系统能力**:SystemCapability.Telephony.CoreService

**参数:**

| 参数名   | 类型                                                         | 必填 | 说明                                   |
| -------- | ------------------------------------------------------------ | ---- | -------------------------------------- |
| slotId   | number                                                       | 是   | 卡槽ID。<br/>- 0:卡槽1<br/>- 1:卡槽2 |
1736
| callback | AsyncCallback\<[NetworkSearchResult](#networksearchresult)\> | 是   | 回调函数。           |
C
clevercong 已提交
1737

D
dingxiaochen 已提交
1738 1739
**错误码:**

D
dingxiaochen 已提交
1740 1741
以下错误码的详细介绍请参见[ohos.telephony(电话子系统)错误码](../../reference/errorcodes/errorcode-telephony.md)错误码。

D
dingxiaochen 已提交
1742 1743 1744 1745 1746 1747 1748 1749 1750
| 错误码ID |                  错误信息                    |
| -------- | -------------------------------------------- |
| 201      | Permission denied.                           |
| 401      | Parameter error.                             |
| 8300001  | Invalid parameter value.                     |
| 8300002  | Operation failed. Cannot connect to service. |
| 8300003  | System internal error.                       |
| 8300999  | Unknown error code.                          |

C
clevercong 已提交
1751 1752 1753 1754 1755 1756 1757 1758 1759 1760
**示例:**

```js
radio.getNetworkSearchInformation(0, (err, data) => {
    console.log(`callback: err->${JSON.stringify(err)}, data->${JSON.stringify(data)}`);
});
```

## radio.getNetworkSearchInformation

D
dingxiaochen 已提交
1761
getNetworkSearchInformation\(slotId: number\): Promise<NetworkSearchResult\>
C
clevercong 已提交
1762

1763
获取网络搜索信息。使用Promise异步回调。
C
clevercong 已提交
1764

D
dingxiaochen 已提交
1765
**系统接口:** 此接口为系统接口。
C
clevercong 已提交
1766 1767 1768 1769 1770 1771 1772 1773 1774 1775 1776 1777 1778 1779 1780

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

**系统能力**:SystemCapability.Telephony.CoreService

**参数:**

| 参数名 | 类型   | 必填 | 说明                                   |
| ------ | ------ | ---- | -------------------------------------- |
| slotId | number | 是   | 卡槽ID。<br/>- 0:卡槽1<br/>- 1:卡槽2 |

**返回值:**

| 类型                                                   | 说明                    |
| ------------------------------------------------------ | ----------------------- |
C
update  
clevercong 已提交
1781
| Promise\<[NetworkSearchResult](#networksearchresult)\> | 以Promise形式返回结果。 |
C
clevercong 已提交
1782

D
dingxiaochen 已提交
1783 1784
**错误码:**

D
dingxiaochen 已提交
1785 1786
以下错误码的详细介绍请参见[ohos.telephony(电话子系统)错误码](../../reference/errorcodes/errorcode-telephony.md)错误码。

D
dingxiaochen 已提交
1787 1788 1789 1790 1791 1792 1793 1794 1795
| 错误码ID |                  错误信息                    |
| -------- | -------------------------------------------- |
| 201      | Permission denied.                           |
| 401      | Parameter error.                             |
| 8300001  | Invalid parameter value.                     |
| 8300002  | Operation failed. Cannot connect to service. |
| 8300003  | System internal error.                       |
| 8300999  | Unknown error code.                          |

C
clevercong 已提交
1796 1797 1798 1799 1800 1801 1802
**示例:**

```js
let promise = radio.getNetworkSearchInformation(0);
promise.then(data => {
    console.log(`getNetworkSearchInformation success, promise: data->${JSON.stringify(data)}`);
}).catch(err => {
1803
    console.log(`getNetworkSearchInformation failed, promise: err->${JSON.stringify(err)}`);
C
clevercong 已提交
1804 1805 1806 1807 1808 1809 1810
});
```

## radio.getNrOptionMode<sup>8+</sup>

getNrOptionMode(callback: AsyncCallback<NrOptionMode\>): void

1811
获取Nr选项模式 。使用callback异步回调。
C
clevercong 已提交
1812

D
dingxiaochen 已提交
1813
**系统接口:** 此接口为系统接口。
C
clevercong 已提交
1814 1815 1816 1817 1818

**系统能力**:SystemCapability.Telephony.CoreService

**参数:**

C
update  
clevercong 已提交
1819 1820 1821
| 参数名   | 类型                                            | 必填 | 说明       |
| -------- | ----------------------------------------------- | ---- | ---------- |
| callback | AsyncCallback\<[NrOptionMode](#nroptionmode8)\> | 是   | 回调函数。 |
C
clevercong 已提交
1822

D
dingxiaochen 已提交
1823 1824
**错误码:**

D
dingxiaochen 已提交
1825 1826
以下错误码的详细介绍请参见[ohos.telephony(电话子系统)错误码](../../reference/errorcodes/errorcode-telephony.md)错误码。

D
dingxiaochen 已提交
1827 1828 1829 1830 1831 1832 1833 1834
| 错误码ID |                 错误信息                     |
| -------- | -------------------------------------------- |
| 401      | Parameter error.                             |
| 8300001  | Invalid parameter value.                     |
| 8300002  | Operation failed. Cannot connect to service. |
| 8300003  | System internal error.                       |
| 8300999  | Unknown error code.                          |

C
clevercong 已提交
1835 1836 1837 1838 1839 1840 1841 1842 1843 1844 1845 1846 1847
**示例:**

```js
radio.getNrOptionMode((err, data) => {
    console.log(`callback: err->${JSON.stringify(err)}, data->${JSON.stringify(data)}`);
});
```


## radio.getNrOptionMode<sup>8+</sup>

getNrOptionMode(slotId: number, callback: AsyncCallback<NrOptionMode\>): void

1848
获取Nr选项模式 。使用callback异步回调。
C
clevercong 已提交
1849

D
dingxiaochen 已提交
1850
**系统接口:** 此接口为系统接口。
C
clevercong 已提交
1851 1852 1853 1854 1855

**系统能力**:SystemCapability.Telephony.CoreService

**参数:**

C
update  
clevercong 已提交
1856 1857 1858 1859
| 参数名   | 类型                                            | 必填 | 说明                                   |
| -------- | ----------------------------------------------- | ---- | -------------------------------------- |
| slotId   | number                                          | 是   | 卡槽ID。<br/>- 0:卡槽1<br/>- 1:卡槽2 |
| callback | AsyncCallback\<[NrOptionMode](#nroptionmode8)\> | 是   | 回调函数。                             |
C
clevercong 已提交
1860

D
dingxiaochen 已提交
1861 1862
**错误码:**

D
dingxiaochen 已提交
1863 1864
以下错误码的详细介绍请参见[ohos.telephony(电话子系统)错误码](../../reference/errorcodes/errorcode-telephony.md)错误码。

D
dingxiaochen 已提交
1865 1866 1867 1868 1869 1870 1871 1872
| 错误码ID |                 错误信息                     |
| -------- | -------------------------------------------- |
| 401      | Parameter error.                             |
| 8300001  | Invalid parameter value.                     |
| 8300002  | Operation failed. Cannot connect to service. |
| 8300003  | System internal error.                       |
| 8300999  | Unknown error code.                          |

C
clevercong 已提交
1873 1874 1875 1876 1877 1878 1879 1880 1881 1882 1883 1884 1885 1886
**示例:**

```js
let slotId = 0;
radio.getNrOptionMode(slotId, (err, data) => {
    console.log(`callback: err->${JSON.stringify(err)}, data->${JSON.stringify(data)}`);
});
```


## radio.getNrOptionMode<sup>8+</sup>

getNrOptionMode(slotId?: number): Promise<NrOptionMode\>

1887
获取Nr选项模式 。使用Promise异步回调。
C
clevercong 已提交
1888

D
dingxiaochen 已提交
1889
**系统接口:** 此接口为系统接口。
C
clevercong 已提交
1890 1891 1892 1893 1894 1895 1896 1897 1898 1899 1900

**系统能力**:SystemCapability.Telephony.CoreService

**参数:**

| 参数名 | 类型   | 必填 | 说明                                   |
| ------ | ------ | ---- | -------------------------------------- |
| slotId | number | 否   | 卡槽ID。<br/>- 0:卡槽1<br/>- 1:卡槽2 |

**返回值:**

C
update  
clevercong 已提交
1901 1902 1903
| 类型                                      | 说明                    |
| ----------------------------------------- | ----------------------- |
| Promise\<[NrOptionMode](#nroptionmode8)\> | 以Promise形式返回结果。 |
C
clevercong 已提交
1904

D
dingxiaochen 已提交
1905 1906
**错误码:**

D
dingxiaochen 已提交
1907 1908
以下错误码的详细介绍请参见[ohos.telephony(电话子系统)错误码](../../reference/errorcodes/errorcode-telephony.md)错误码。

D
dingxiaochen 已提交
1909 1910 1911 1912 1913 1914 1915 1916
| 错误码ID |                 错误信息                     |
| -------- | -------------------------------------------- |
| 401      | Parameter error.                             |
| 8300001  | Invalid parameter value.                     |
| 8300002  | Operation failed. Cannot connect to service. |
| 8300003  | System internal error.                       |
| 8300999  | Unknown error code.                          |

C
clevercong 已提交
1917 1918 1919 1920 1921 1922 1923 1924
**示例:**

```js
let slotId = 0;
let promise = radio.getNrOptionMode(slotId);
promise.then(data => {
    console.log(`getNrOptionMode success, promise: data->${JSON.stringify(data)}`);
}).catch(err => {
1925
    console.error(`getNrOptionMode failed, promise: err->${JSON.stringify(err)}`);
C
clevercong 已提交
1926 1927 1928 1929 1930 1931 1932
});
```

## radio.turnOnRadio<sup>7+</sup>

turnOnRadio(callback: AsyncCallback<void\>): void

1933
打开Radio。使用callback异步回调。
C
clevercong 已提交
1934

D
dingxiaochen 已提交
1935
**系统接口:** 此接口为系统接口。
C
clevercong 已提交
1936 1937 1938 1939 1940 1941 1942 1943 1944 1945 1946

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

**系统能力**:SystemCapability.Telephony.CoreService

**参数:**

| 参数名   | 类型                  | 必填 | 说明       |
| -------- | --------------------- | ---- | ---------- |
| callback | AsyncCallback\<void\> | 是   | 回调函数。 |

D
dingxiaochen 已提交
1947 1948
**错误码:**

D
dingxiaochen 已提交
1949 1950
以下错误码的详细介绍请参见[ohos.telephony(电话子系统)错误码](../../reference/errorcodes/errorcode-telephony.md)错误码。

D
dingxiaochen 已提交
1951 1952 1953 1954 1955 1956 1957 1958 1959
| 错误码ID |                  错误信息                    |
| -------- | -------------------------------------------- |
| 201      | Permission denied.                           |
| 401      | Parameter error.                             |
| 8300001  | Invalid parameter value.                     |
| 8300002  | Operation failed. Cannot connect to service. |
| 8300003  | System internal error.                       |
| 8300999  | Unknown error code.                          |

C
clevercong 已提交
1960 1961 1962
**示例:**

```js
D
dingxiaochen 已提交
1963 1964
radio.turnOnRadio((err) => {
    console.log(`callback: err->${JSON.stringify(err)}`);
C
clevercong 已提交
1965 1966 1967 1968 1969 1970 1971 1972
});
```


## radio.turnOnRadio<sup>7+</sup>

turnOnRadio(slotId: number, callback: AsyncCallback<void\>): void

1973
打开Radio。使用callback异步回调。
C
clevercong 已提交
1974

D
dingxiaochen 已提交
1975
**系统接口:** 此接口为系统接口。
C
clevercong 已提交
1976 1977 1978 1979 1980 1981 1982 1983 1984 1985 1986 1987

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

**系统能力**:SystemCapability.Telephony.CoreService

**参数:**

| 参数名   | 类型                  | 必填 | 说明                                   |
| -------- | --------------------- | ---- | -------------------------------------- |
| slotId   | number                | 是   | 卡槽ID。<br/>- 0:卡槽1<br/>- 1:卡槽2 |
| callback | AsyncCallback\<void\> | 是   | 回调函数。                             |

D
dingxiaochen 已提交
1988 1989
**错误码:**

D
dingxiaochen 已提交
1990 1991
以下错误码的详细介绍请参见[ohos.telephony(电话子系统)错误码](../../reference/errorcodes/errorcode-telephony.md)错误码。

D
dingxiaochen 已提交
1992 1993 1994 1995 1996 1997 1998 1999 2000
| 错误码ID |                  错误信息                    |
| -------- | -------------------------------------------- |
| 201      | Permission denied.                           |
| 401      | Parameter error.                             |
| 8300001  | Invalid parameter value.                     |
| 8300002  | Operation failed. Cannot connect to service. |
| 8300003  | System internal error.                       |
| 8300999  | Unknown error code.                          |

C
clevercong 已提交
2001 2002 2003 2004
**示例:**

```js
let slotId = 0;
D
dingxiaochen 已提交
2005 2006
radio.turnOnRadio(slotId, (err) => {
    console.log(`callback: err->${JSON.stringify(err)}`);
C
clevercong 已提交
2007 2008 2009 2010 2011 2012 2013 2014
});
```


## radio.turnOnRadio<sup>7+</sup>

turnOnRadio(slotId?: number): Promise<void\>

2015
打开Radio。使用Promise异步回调。
C
clevercong 已提交
2016

D
dingxiaochen 已提交
2017
**系统接口:** 此接口为系统接口。
C
clevercong 已提交
2018 2019 2020 2021 2022 2023 2024 2025 2026 2027 2028 2029 2030

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

**系统能力**:SystemCapability.Telephony.CoreService

**参数:**

| 参数名 | 类型   | 必填 | 说明                                   |
| ------ | ------ | ---- | -------------------------------------- |
| slotId | number | 否   | 卡槽ID。<br/>- 0:卡槽1<br/>- 1:卡槽2 |

**返回值:**

C
update  
clevercong 已提交
2031 2032 2033
| 类型            | 说明                    |
| --------------- | ----------------------- |
| Promise\<void\> | 以Promise形式返回结果。 |
C
clevercong 已提交
2034

D
dingxiaochen 已提交
2035 2036
**错误码:**

D
dingxiaochen 已提交
2037 2038
以下错误码的详细介绍请参见[ohos.telephony(电话子系统)错误码](../../reference/errorcodes/errorcode-telephony.md)错误码。

D
dingxiaochen 已提交
2039 2040 2041 2042 2043 2044 2045 2046 2047
| 错误码ID |                  错误信息                    |
| -------- | -------------------------------------------- |
| 201      | Permission denied.                           |
| 401      | Parameter error.                             |
| 8300001  | Invalid parameter value.                     |
| 8300002  | Operation failed. Cannot connect to service. |
| 8300003  | System internal error.                       |
| 8300999  | Unknown error code.                          |

C
clevercong 已提交
2048 2049 2050 2051
**示例:**

```js
let slotId = 0;
D
dingxiaochen 已提交
2052 2053 2054
radio.turnOnRadio(slotId).then(() => {
    console.log(`turnOnRadio success.`);
}).catch((err) => {
2055
    console.error(`turnOnRadio failed, promise: err->${JSON.stringify(err)}`);
C
clevercong 已提交
2056 2057 2058 2059 2060 2061 2062
});
```

## radio.turnOffRadio<sup>7+</sup>

turnOffRadio(callback: AsyncCallback<void\>): void

2063
关闭Radio。使用callback异步回调。
C
clevercong 已提交
2064

D
dingxiaochen 已提交
2065
**系统接口:** 此接口为系统接口。
C
clevercong 已提交
2066 2067 2068 2069 2070 2071 2072 2073 2074 2075 2076

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

**系统能力**:SystemCapability.Telephony.CoreService

**参数:**

| 参数名   | 类型                  | 必填 | 说明       |
| -------- | --------------------- | ---- | ---------- |
| callback | AsyncCallback\<void\> | 是   | 回调函数。 |

D
dingxiaochen 已提交
2077 2078
**错误码:**

D
dingxiaochen 已提交
2079 2080
以下错误码的详细介绍请参见[ohos.telephony(电话子系统)错误码](../../reference/errorcodes/errorcode-telephony.md)错误码。

D
dingxiaochen 已提交
2081 2082 2083 2084 2085 2086 2087 2088 2089
| 错误码ID |                  错误信息                    |
| -------- | -------------------------------------------- |
| 201      | Permission denied.                           |
| 401      | Parameter error.                             |
| 8300001  | Invalid parameter value.                     |
| 8300002  | Operation failed. Cannot connect to service. |
| 8300003  | System internal error.                       |
| 8300999  | Unknown error code.                          |

C
clevercong 已提交
2090 2091 2092
**示例:**

```js
D
dingxiaochen 已提交
2093 2094
radio.turnOffRadio((err) => {
    console.log(`callback: err->${JSON.stringify(err)}`);
C
clevercong 已提交
2095 2096 2097 2098 2099 2100 2101 2102
});
```


## radio.turnOffRadio<sup>7+</sup>

turnOffRadio(slotId: number, callback: AsyncCallback<void\>): void

2103
关闭Radio。使用callback异步回调。
C
clevercong 已提交
2104

D
dingxiaochen 已提交
2105
**系统接口:** 此接口为系统接口。
C
clevercong 已提交
2106 2107 2108 2109 2110 2111 2112 2113 2114 2115 2116 2117

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

**系统能力**:SystemCapability.Telephony.CoreService

**参数:**

| 参数名   | 类型                  | 必填 | 说明                                   |
| -------- | --------------------- | ---- | -------------------------------------- |
| slotId   | number                | 是   | 卡槽ID。<br/>- 0:卡槽1<br/>- 1:卡槽2 |
| callback | AsyncCallback\<void\> | 是   | 回调函数。                             |

D
dingxiaochen 已提交
2118 2119
**错误码:**

D
dingxiaochen 已提交
2120 2121
以下错误码的详细介绍请参见[ohos.telephony(电话子系统)错误码](../../reference/errorcodes/errorcode-telephony.md)错误码。

D
dingxiaochen 已提交
2122 2123 2124 2125 2126 2127 2128 2129 2130
| 错误码ID |                  错误信息                    |
| -------- | -------------------------------------------- |
| 201      | Permission denied.                           |
| 401      | Parameter error.                             |
| 8300001  | Invalid parameter value.                     |
| 8300002  | Operation failed. Cannot connect to service. |
| 8300003  | System internal error.                       |
| 8300999  | Unknown error code.                          |

C
clevercong 已提交
2131 2132 2133 2134
**示例:**

```js
let slotId = 0;
D
dingxiaochen 已提交
2135 2136
radio.turnOffRadio(slotId, (err) => {
    console.log(`callback: err->${JSON.stringify(err)}`);
C
clevercong 已提交
2137 2138 2139 2140 2141 2142 2143 2144
});
```


## radio.turnOffRadio<sup>7+</sup>

turnOffRadio(slotId?: number): Promise<void\>

2145
关闭Radio。使用Promise异步回调。
C
clevercong 已提交
2146

D
dingxiaochen 已提交
2147
**系统接口:** 此接口为系统接口。
C
clevercong 已提交
2148 2149 2150 2151 2152 2153 2154 2155 2156 2157 2158 2159 2160

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

**系统能力**:SystemCapability.Telephony.CoreService

**参数:**

| 参数名 | 类型   | 必填 | 说明                                   |
| ------ | ------ | ---- | -------------------------------------- |
| slotId | number | 否   | 卡槽ID。<br/>- 0:卡槽1<br/>- 1:卡槽2 |

**返回值:**

C
update  
clevercong 已提交
2161 2162 2163
| 类型            | 说明                    |
| --------------- | ----------------------- |
| Promise\<void\> | 以Promise形式返回结果。 |
C
clevercong 已提交
2164

D
dingxiaochen 已提交
2165 2166
**错误码:**

D
dingxiaochen 已提交
2167 2168
以下错误码的详细介绍请参见[ohos.telephony(电话子系统)错误码](../../reference/errorcodes/errorcode-telephony.md)错误码。

D
dingxiaochen 已提交
2169 2170 2171 2172 2173 2174 2175 2176 2177
| 错误码ID |                  错误信息                    |
| -------- | -------------------------------------------- |
| 201      | Permission denied.                           |
| 401      | Parameter error.                             |
| 8300001  | Invalid parameter value.                     |
| 8300002  | Operation failed. Cannot connect to service. |
| 8300003  | System internal error.                       |
| 8300999  | Unknown error code.                          |

C
clevercong 已提交
2178 2179 2180 2181
**示例:**

```js
let slotId = 0;
D
dingxiaochen 已提交
2182 2183 2184
radio.turnOffRadio(slotId).then(() => {
    console.log(`turnOffRadio success.`);
}).catch((err) => {
2185
    console.error(`turnOffRadio failed, promise: err->${JSON.stringify(err)}`);
C
clevercong 已提交
2186 2187 2188 2189 2190 2191 2192
});
```

## radio.setPreferredNetwork<sup>8+</sup>

setPreferredNetwork\(slotId: number, networkMode: PreferredNetworkMode, callback: AsyncCallback<void\>\): void

2193
设置首选网络。使用callback异步回调。
C
clevercong 已提交
2194

D
dingxiaochen 已提交
2195
**系统接口:** 此接口为系统接口。
C
clevercong 已提交
2196 2197 2198 2199 2200 2201 2202

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

**系统能力**:SystemCapability.Telephony.CoreService

**参数:**

C
update  
clevercong 已提交
2203 2204 2205
| 参数名      | 类型                                           | 必填 | 说明                                   |
| ----------- | ---------------------------------------------- | ---- | -------------------------------------- |
| slotId      | number                                         | 是   | 卡槽ID。<br/>- 0:卡槽1<br/>- 1:卡槽2 |
2206
| networkMode | [PreferredNetworkMode](#preferrednetworkmode8) | 是   | 设置首选网络模式。                       |
C
update  
clevercong 已提交
2207
| callback    | AsyncCallback\<void\>                          | 是   | 回调函数。                             |
C
clevercong 已提交
2208

D
dingxiaochen 已提交
2209 2210
**错误码:**

D
dingxiaochen 已提交
2211 2212
以下错误码的详细介绍请参见[ohos.telephony(电话子系统)错误码](../../reference/errorcodes/errorcode-telephony.md)错误码。

D
dingxiaochen 已提交
2213 2214 2215 2216 2217 2218 2219 2220 2221
| 错误码ID |                  错误信息                    |
| -------- | -------------------------------------------- |
| 201      | Permission denied.                           |
| 401      | Parameter error.                             |
| 8300001  | Invalid parameter value.                     |
| 8300002  | Operation failed. Cannot connect to service. |
| 8300003  | System internal error.                       |
| 8300999  | Unknown error code.                          |

C
clevercong 已提交
2222 2223 2224
**示例:**

```js
D
dingxiaochen 已提交
2225 2226 2227
let slotId = 0;
radio.setPreferredNetwork(slotId, radio.PreferredNetworkMode.PREFERRED_NETWORK_MODE_GSM, (err) => {
    console.log(`callback: err->${JSON.stringify(err)}`);
C
clevercong 已提交
2228 2229 2230 2231 2232 2233 2234
});
```

## radio.setPreferredNetwork<sup>8+</sup>

setPreferredNetwork(slotId: number, networkMode: PreferredNetworkMode): Promise<void\>

2235
设置首选网络。使用Promise异步回调。
C
clevercong 已提交
2236

D
dingxiaochen 已提交
2237
**系统接口:** 此接口为系统接口。
C
clevercong 已提交
2238 2239 2240 2241 2242 2243 2244

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

**系统能力**:SystemCapability.Telephony.CoreService

**参数:**

C
update  
clevercong 已提交
2245 2246 2247
| 参数名      | 类型                                           | 必填 | 说明                                   |
| ----------- | ---------------------------------------------- | ---- | -------------------------------------- |
| slotId      | number                                         | 是   | 卡槽ID。<br/>- 0:卡槽1<br/>- 1:卡槽2 |
2248
| networkMode | [PreferredNetworkMode](#preferrednetworkmode8) | 是   | 设置首选网络模式。                       |
C
clevercong 已提交
2249 2250 2251

**返回值:**

C
update  
clevercong 已提交
2252 2253 2254
| 类型            | 说明                    |
| --------------- | ----------------------- |
| Promise\<void\> | 以Promise形式返回结果。 |
C
clevercong 已提交
2255

D
dingxiaochen 已提交
2256 2257
**错误码:**

D
dingxiaochen 已提交
2258 2259 2260
以下错误码的详细介绍请参见[ohos.telephony(电话子系统)错误码](../../reference/errorcodes/errorcode-telephony.md)错误码。

| 错误码ID |                  错误信息                     |
D
dingxiaochen 已提交
2261 2262 2263 2264 2265 2266 2267 2268
| -------- | -------------------------------------------- |
| 201      | Permission denied.                           |
| 401      | Parameter error.                             |
| 8300001  | Invalid parameter value.                     |
| 8300002  | Operation failed. Cannot connect to service. |
| 8300003  | System internal error.                       |
| 8300999  | Unknown error code.                          |

C
clevercong 已提交
2269 2270 2271
**示例:**

```js
D
dingxiaochen 已提交
2272 2273 2274 2275
let slotId = 0;
radio.setPreferredNetwork(slotId, radio.PreferredNetworkMode.PREFERRED_NETWORK_MODE_GSM).then(() => {
    console.log(`setPreferredNetwork success.`);
}).catch((err) => {
2276
    console.log(`setPreferredNetwork failed, promise: err->${JSON.stringify(err)}`);
C
clevercong 已提交
2277 2278 2279 2280 2281 2282 2283
});
```

## radio.getPreferredNetwork<sup>8+</sup>

getPreferredNetwork\(slotId: number, callback: AsyncCallback<PreferredNetworkMode\>\): void

2284
获取首选网络。使用callback异步回调。
C
clevercong 已提交
2285

D
dingxiaochen 已提交
2286
**系统接口:** 此接口为系统接口。
C
clevercong 已提交
2287 2288 2289 2290 2291 2292 2293

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

**系统能力**:SystemCapability.Telephony.CoreService

**参数:**

D
dingxiaochen 已提交
2294 2295 2296
| 参数名   |                              类型                               | 必填 | 说明                                   |
| -------- | --------------------------------------------------------------- | ---- | -------------------------------------- |
| slotId   | number                                                          | 是   | 卡槽ID。<br/>- 0:卡槽1<br/>- 1:卡槽2 |
C
update  
clevercong 已提交
2297
| callback | AsyncCallback\<[PreferredNetworkMode](#preferrednetworkmode8)\> | 是   | 回调函数。                             |
C
clevercong 已提交
2298

D
dingxiaochen 已提交
2299 2300
**错误码:**

D
dingxiaochen 已提交
2301 2302
以下错误码的详细介绍请参见[ohos.telephony(电话子系统)错误码](../../reference/errorcodes/errorcode-telephony.md)错误码。

D
dingxiaochen 已提交
2303 2304 2305 2306 2307 2308 2309 2310 2311
| 错误码ID |                  错误信息                    |
| -------- | -------------------------------------------- |
| 201      | Permission denied.                           |
| 401      | Parameter error.                             |
| 8300001  | Invalid parameter value.                     |
| 8300002  | Operation failed. Cannot connect to service. |
| 8300003  | System internal error.                       |
| 8300999  | Unknown error code.                          |

C
clevercong 已提交
2312 2313 2314 2315 2316 2317 2318 2319 2320 2321
**示例:**

```js
radio.getPreferredNetwork(0, (err, data) => {
    console.log(`callback: err->${JSON.stringify(err)}, data->${JSON.stringify(data)}`);
});
```

## radio.getPreferredNetwork<sup>8+</sup>

D
dingxiaochen 已提交
2322
getPreferredNetwork(slotId: number): Promise<PreferredNetworkMode\>
C
clevercong 已提交
2323

2324
获取首选网络。使用Promise异步回调。
C
clevercong 已提交
2325

D
dingxiaochen 已提交
2326
**系统接口:** 此接口为系统接口。
C
clevercong 已提交
2327 2328 2329 2330 2331 2332 2333 2334 2335 2336 2337 2338 2339 2340 2341 2342 2343

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

**系统能力**:SystemCapability.Telephony.CoreService

**参数:**

| 参数名 | 类型   | 必填 | 说明                                   |
| ------ | ------ | ---- | -------------------------------------- |
| slotId | number | 是   | 卡槽ID。<br/>- 0:卡槽1<br/>- 1:卡槽2 |

**返回值:**

| 类型            | 说明                    |
| --------------- | ----------------------- |
| Promise\<void\> | 以Promise形式返回结果。 |

D
dingxiaochen 已提交
2344 2345
**错误码:**

D
dingxiaochen 已提交
2346 2347
以下错误码的详细介绍请参见[ohos.telephony(电话子系统)错误码](../../reference/errorcodes/errorcode-telephony.md)错误码。

D
dingxiaochen 已提交
2348 2349 2350 2351 2352 2353 2354 2355 2356
| 错误码ID |                  错误信息                    |
| -------- | -------------------------------------------- |
| 201      | Permission denied.                           |
| 401      | Parameter error.                             |
| 8300001  | Invalid parameter value.                     |
| 8300002  | Operation failed. Cannot connect to service. |
| 8300003  | System internal error.                       |
| 8300999  | Unknown error code.                          |

C
clevercong 已提交
2357 2358 2359 2360 2361 2362 2363
**示例:**

```js
let promise = radio.getPreferredNetwork(0);
promise.then(data => {
    console.log(`getPreferredNetwork success, promise: data->${JSON.stringify(data)}`);
}).catch(err => {
2364
    console.log(`getPreferredNetwork failed, promise: err->${JSON.stringify(err)}`);
C
clevercong 已提交
2365 2366 2367
});
```

C
clevercong 已提交
2368 2369 2370 2371
## radio.getImsRegInfo<sup>9+</sup>

getImsRegInfo(slotId: number, imsType: ImsServiceType, callback: AsyncCallback<ImsRegInfo\>): void

2372
获取特定IMS服务类型的IMS注册状态信息。使用callback异步回调。
C
clevercong 已提交
2373

D
dingxiaochen 已提交
2374
**系统接口:** 此接口为系统接口。
C
clevercong 已提交
2375 2376 2377 2378 2379 2380 2381 2382 2383 2384 2385 2386 2387

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

**系统能力**:SystemCapability.Telephony.CoreService

**参数:**

| 参数名   | 类型                                       | 必填 | 说明                                   |
| -------- | ------------------------------------------ | ---- | -------------------------------------- |
| slotId   | number                                     | 是   | 卡槽ID。<br/>- 0:卡槽1<br/>- 1:卡槽2 |
| imsType  | [ImsServiceType](#imsservicetype9)         | 是   | IMS服务类型。                          |
| callback | AsyncCallback<[ImsRegInfo](#imsreginfo9)\> | 是   | 回调函数。                             |

D
dingxiaochen 已提交
2388 2389
**错误码:**

D
dingxiaochen 已提交
2390 2391
以下错误码的详细介绍请参见[ohos.telephony(电话子系统)错误码](../../reference/errorcodes/errorcode-telephony.md)错误码。

D
dingxiaochen 已提交
2392 2393 2394 2395 2396 2397 2398 2399 2400
| 错误码ID |                  错误信息                    |
| -------- | -------------------------------------------- |
| 201      | Permission denied.                           |
| 401      | Parameter error.                             |
| 8300001  | Invalid parameter value.                     |
| 8300002  | Operation failed. Cannot connect to service. |
| 8300003  | System internal error.                       |
| 8300999  | Unknown error code.                          |

C
clevercong 已提交
2401 2402 2403
**示例:**

```js
D
dingxiaochen 已提交
2404
radio.getImsRegInfo(0, radio.ImsServiceType.TYPE_VIDEO, (err, data) => {
C
clevercong 已提交
2405 2406 2407 2408 2409 2410 2411 2412
    console.log(`callback: err->${JSON.stringify(err)}, data->${JSON.stringify(data)}`);
});
```

## radio.getImsRegInfo<sup>9+</sup>

getImsRegInfo(slotId: number, imsType: ImsServiceType): Promise<ImsRegInfo\>

2413
获取特定IMS服务类型的IMS注册状态信息。使用Promise异步回调。
C
clevercong 已提交
2414

D
dingxiaochen 已提交
2415
**系统接口:** 此接口为系统接口。
C
clevercong 已提交
2416 2417 2418 2419 2420 2421 2422 2423 2424 2425 2426 2427 2428 2429 2430 2431 2432 2433

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

**系统能力**:SystemCapability.Telephony.CoreService

**参数:**

| 参数名  | 类型                               | 必填 | 说明                                   |
| ------- | ---------------------------------- | ---- | -------------------------------------- |
| slotId  | number                             | 是   | 卡槽ID。<br/>- 0:卡槽1<br/>- 1:卡槽2 |
| imsType | [ImsServiceType](#imsservicetype9) | 是   | IMS服务类型。                          |

**返回值:**

| 类型                                  | 说明                    |
| ------------------------------------- | ----------------------- |
| Promise\<[ImsRegInfo](#imsreginfo9)\> | 以Promise形式返回结果。 |

D
dingxiaochen 已提交
2434 2435
**错误码:**

D
dingxiaochen 已提交
2436 2437
以下错误码的详细介绍请参见[ohos.telephony(电话子系统)错误码](../../reference/errorcodes/errorcode-telephony.md)错误码。

D
dingxiaochen 已提交
2438 2439 2440 2441 2442 2443 2444 2445 2446
| 错误码ID |                  错误信息                    |
| -------- | -------------------------------------------- |
| 201      | Permission denied.                           |
| 401      | Parameter error.                             |
| 8300001  | Invalid parameter value.                     |
| 8300002  | Operation failed. Cannot connect to service. |
| 8300003  | System internal error.                       |
| 8300999  | Unknown error code.                          |

C
clevercong 已提交
2447 2448 2449
**示例:**

```js
D
dingxiaochen 已提交
2450
let promise = radio.getImsRegInfo(0, radio.ImsServiceType.TYPE_VIDEO);
C
clevercong 已提交
2451 2452 2453
promise.then(data => {
    console.log(`getImsRegInfo success, promise: data->${JSON.stringify(data)}`);
}).catch(err => {
2454
    console.log(`getImsRegInfo failed, promise: err->${JSON.stringify(err)}`);
C
clevercong 已提交
2455 2456 2457 2458 2459 2460 2461 2462 2463
});
```

## radio.on('imsRegStateChange')<sup>9+</sup>

on(type: 'imsRegStateChange', slotId: number, imsType: ImsServiceType, callback: Callback<ImsRegInfo\>): void

订阅imsRegStateChange事件,使用callback异步回调。

D
dingxiaochen 已提交
2464
**系统接口:** 此接口为系统接口。
C
clevercong 已提交
2465 2466 2467 2468 2469 2470 2471 2472 2473 2474 2475 2476 2477 2478

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

**系统能力**:SystemCapability.Telephony.CoreService

**参数:**

| 参数名   | 类型                                 | 必填 | 说明                                   |
| -------- | ------------------------------------ | ---- | -------------------------------------- |
| type     | string                               | 是   | 监听IMS注册状态的变化。                |
| slotId   | number                               | 是   | 卡槽ID。<br/>- 0:卡槽1<br/>- 1:卡槽2 |
| imsType  | [ImsServiceType](#imsservicetype9)   | 是   | IMS服务类型。                          |
| callback | Callback<[ImsRegInfo](#imsreginfo9)> | 是   | 回调函数。                             |

D
dingxiaochen 已提交
2479 2480
**错误码:**

D
dingxiaochen 已提交
2481 2482
以下错误码的详细介绍请参见[ohos.telephony(电话子系统)错误码](../../reference/errorcodes/errorcode-telephony.md)错误码。

D
dingxiaochen 已提交
2483 2484 2485 2486 2487 2488 2489 2490 2491
| 错误码ID |                  错误信息                    |
| -------- | -------------------------------------------- |
| 201      | Permission denied.                           |
| 401      | Parameter error.                             |
| 8300001  | Invalid parameter value.                     |
| 8300002  | Operation failed. Cannot connect to service. |
| 8300003  | System internal error.                       |
| 8300999  | Unknown error code.                          |

C
clevercong 已提交
2492 2493 2494
**示例:**

```js
Y
YOUR_NAME 已提交
2495 2496
radio.on('imsRegStateChange', 0, radio.ImsServiceType.TYPE_VIDEO, data => {
    console.log(`callback: data->${JSON.stringify(data)}`);
C
clevercong 已提交
2497 2498 2499 2500 2501 2502 2503 2504 2505
});
```

## radio.off('imsRegStateChange')<sup>9+</sup>

off(type: 'imsRegStateChange', slotId: number, imsType: ImsServiceType, callback?: Callback<ImsRegInfo\>): void

取消订阅imsRegStateChange事件,使用callback异步回调。

D
dingxiaochen 已提交
2506
**系统接口:** 此接口为系统接口。
C
clevercong 已提交
2507 2508 2509 2510 2511 2512 2513 2514 2515

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

**系统能力**:SystemCapability.Telephony.CoreService

**参数:**

| 参数名   | 类型                                 | 必填 | 说明                                   |
| -------- | ------------------------------------ | ---- | -------------------------------------- |
J
update  
jiangbinghan 已提交
2516
| type     | string                               | 是   | 取消监听IMS注册状态的变化。     |
C
clevercong 已提交
2517 2518 2519 2520
| slotId   | number                               | 是   | 卡槽ID。<br/>- 0:卡槽1<br/>- 1:卡槽2 |
| imsType  | [ImsServiceType](#imsservicetype9)   | 是   | IMS服务类型。                          |
| callback | Callback<[ImsRegInfo](#imsreginfo9)> | 否   | 回调函数。                             |

D
dingxiaochen 已提交
2521 2522
**错误码:**

D
dingxiaochen 已提交
2523 2524
以下错误码的详细介绍请参见[ohos.telephony(电话子系统)错误码](../../reference/errorcodes/errorcode-telephony.md)错误码。

D
dingxiaochen 已提交
2525 2526 2527 2528 2529 2530 2531 2532 2533
| 错误码ID |                  错误信息                    |
| -------- | -------------------------------------------- |
| 201      | Permission denied.                           |
| 401      | Parameter error.                             |
| 8300001  | Invalid parameter value.                     |
| 8300002  | Operation failed. Cannot connect to service. |
| 8300003  | System internal error.                       |
| 8300999  | Unknown error code.                          |

C
clevercong 已提交
2534 2535 2536
**示例:**

```js
Y
YOUR_NAME 已提交
2537 2538
radio.off('imsRegStateChange', 0, radio.ImsServiceType.TYPE_VIDEO, data => {
    console.log(`callback: data->${JSON.stringify(data)}`);
C
clevercong 已提交
2539 2540 2541
});
```

S
SubmarinePhantom 已提交
2542 2543 2544 2545 2546 2547 2548 2549 2550 2551 2552 2553 2554 2555 2556 2557 2558 2559 2560 2561 2562 2563 2564 2565 2566 2567 2568 2569 2570 2571 2572 2573 2574 2575 2576 2577 2578 2579 2580 2581 2582 2583 2584 2585 2586 2587 2588 2589 2590 2591 2592 2593 2594 2595 2596 2597 2598 2599 2600 2601 2602 2603 2604 2605 2606 2607 2608 2609 2610 2611 2612 2613 2614 2615 2616 2617 2618 2619 2620 2621 2622 2623 2624 2625 2626 2627 2628 2629 2630 2631 2632 2633 2634 2635 2636

## radio.getBasebandVersion<sup>10+</sup>

getBasebandVersion\(slotId: number, callback: AsyncCallback\<string\>\): void

获取设备的基带版本号。使用callback异步回调。

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

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

**系统能力**:SystemCapability.Telephony.CoreService

**参数:**

| 参数名   | 类型                    | 必填 | 说明                                   |
| -------- | ----------------------- | ---- | ------------------------------------- |
| slotId   | number                  | 是   | 卡槽ID。<br/>- 0:卡槽1<br/>- 1:卡槽2 |
| callback | AsyncCallback\<string\> | 是   | 回调函数。获取的基带版本号。            |

**错误码:**

以下错误码的详细介绍请参见[ohos.telephony(电话子系统)错误码](../../reference/errorcodes/errorcode-telephony.md)

| 错误码ID |                  错误信息                     |
| -------- | -------------------------------------------- |
| 201      | Permission denied.                           |
| 202      | Non-system applications use system APIs.     |
| 401      | Parameter error.                             |
| 8300001  | Invalid parameter value.                     |
| 8300002  | Operation failed. Cannot connect to service. |
| 8300003  | System internal error.                       |
| 8300999  | Unknown error code.                          |

**示例:**

```js
let slotId = 0;
radio.getBasebandVersion(slotId, (err, data) => {
    console.log(`callback: err->${JSON.stringify(err)}, data->${JSON.stringify(data)}`);
});
```


## radio.getBasebandVersion<sup>10+</sup>

getBasebandVersion\(slotId: number\): Promise\<string\>

获取设备的基带版本号。使用Promise异步回调。

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

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

**系统能力**:SystemCapability.Telephony.CoreService

**参数:**

| 参数名   | 类型                     | 必填 | 说明                                  |
| -------- | ----------------------- | ---- | ------------------------------------- |
| slotId   | number                  | 是   | 卡槽ID。<br/>- 0:卡槽1<br/>- 1:卡槽2 |

**返回值:**

| 类型              | 说明                                    |
| ----------------- | -------------------------------------- |
| Promise\<string\> | 以Promise形式返回设备的基带版本号。      |

**错误码:**

以下错误码的详细介绍请参见[ohos.telephony(电话子系统)错误码](../../reference/errorcodes/errorcode-telephony.md)

| 错误码ID |                  错误信息                     |
| -------- | -------------------------------------------- |
| 201      | Permission denied.                           |
| 202      | Non-system applications use system APIs.     |
| 401      | Parameter error.                             |
| 8300001  | Invalid parameter value.                     |
| 8300002  | Operation failed. Cannot connect to service. |
| 8300003  | System internal error.                       |
| 8300999  | Unknown error code.                          |

**示例:**

```js
let slotId = 0;
let promise = radio.getBasebandVersion(slotId);
promise.then(data => {
    console.log(`getBasebandVersion success, promise: data->${JSON.stringify(data)}`);
}).catch(err => {
    console.error(`getBasebandVersion failed, promise: err->${JSON.stringify(err)}`);
});
```


C
clevercong 已提交
2637
## RadioTechnology
C
clevercong 已提交
2638 2639 2640

无线接入技术。

Z
zengyawen 已提交
2641
**系统能力**:SystemCapability.Telephony.CoreService
C
clevercong 已提交
2642 2643

| 名称                      | 值   | 说明                                                         |
Z
zengyawen 已提交
2644
| ------------------------- | ---- | ------------------------------------------------------------ |
C
clevercong 已提交
2645 2646 2647 2648 2649 2650 2651
| RADIO_TECHNOLOGY_UNKNOWN  | 0    | 未知无线接入技术(RAT)。                                    |
| RADIO_TECHNOLOGY_GSM      | 1    | 无线接入技术GSM(Global System For Mobile Communication)。  |
| RADIO_TECHNOLOGY_1XRTT    | 2    | 无线接入技术1XRTT(Single-Carrier Radio Transmission Technology)。 |
| RADIO_TECHNOLOGY_WCDMA    | 3    | 无线接入技术WCDMA(Wideband Code Division Multiple Access)。 |
| RADIO_TECHNOLOGY_HSPA     | 4    | 无线接入技术HSPA(High Speed Packet Access)。               |
| RADIO_TECHNOLOGY_HSPAP    | 5    | 无线接入技术HSPAP(High Speed packet access (HSPA+) )。     |
| RADIO_TECHNOLOGY_TD_SCDMA | 6    | 无线接入技术TDSCDMA(TimeDivision-Synchronous Code Division Multiple Access)。 |
2652
| RADIO_TECHNOLOGY_EVDO     | 7    | 无线接入技术EVDO(Evolution Data Only)。                   |
C
clevercong 已提交
2653 2654 2655 2656 2657 2658 2659 2660
| RADIO_TECHNOLOGY_EHRPD    | 8    | 无线接入技术EHRPD(Evolved High Rate Package Data)。        |
| RADIO_TECHNOLOGY_LTE      | 9    | 无线接入技术LTE(Long Term Evolution)。                     |
| RADIO_TECHNOLOGY_LTE_CA   | 10   | 无线接入技术LTE_CA(Long Term Evolution_Carrier Aggregation)。 |
| RADIO_TECHNOLOGY_IWLAN    | 11   | 无线接入技术IWLAN(Industrial Wireless LAN)。               |
| RADIO_TECHNOLOGY_NR       | 12   | 无线接入技术NR(New Radio)。                                |


## SignalInformation
C
clevercong 已提交
2661 2662 2663

网络信号强度信息对象。

Z
zengyawen 已提交
2664
**系统能力**:SystemCapability.Telephony.CoreService
C
clevercong 已提交
2665

D
dingxiaochen 已提交
2666 2667 2668 2669 2670
|      名称       |           类型              | 必填 |      说明          |
| --------------- | --------------------------- | ---- | ------------------ |
| signalType      | [NetworkType](#networktype) | 是   | 网络信号强度类型。 |
| signalLevel     | number                      | 是   | 网络信号强度等级。 |
| dBm<sup>9+</sup>| number                      | 是   | 网络信号强度。     |
Z
zengyawen 已提交
2671

C
clevercong 已提交
2672
## NetworkType
C
clevercong 已提交
2673 2674 2675

网络类型。

Z
zengyawen 已提交
2676
**系统能力**:SystemCapability.Telephony.CoreService
C
clevercong 已提交
2677 2678

| 名称                 | 值   | 说明                                                         |
Z
zengyawen 已提交
2679
| -------------------- | ---- | ------------------------------------------------------------ |
C
clevercong 已提交
2680 2681 2682 2683 2684 2685 2686
| NETWORK_TYPE_UNKNOWN | 0    | 未知网络类型。                                               |
| NETWORK_TYPE_GSM     | 1    | 网络类型为GSM(Global System For Mobile Communication)。    |
| NETWORK_TYPE_CDMA    | 2    | 网络类型为CDMA(Code Division Multiple Access)。            |
| NETWORK_TYPE_WCDMA   | 3    | 网络类型为WCDMA(Wideband Code Division Multiple Access)。  |
| NETWORK_TYPE_TDSCDMA | 4    | 网络类型为TDSCDMA(TimeDivision-Synchronous Code Division Multiple Access)。 |
| NETWORK_TYPE_LTE     | 5    | 网络类型为LTE(Long Term Evolution)。                       |
| NETWORK_TYPE_NR      | 6    | 网络类型为5G NR(New Radio)。                               |
Z
zengyawen 已提交
2687

C
clevercong 已提交
2688
## NetworkState
C
clevercong 已提交
2689 2690 2691

网络注册状态。

Z
zengyawen 已提交
2692
**系统能力**:SystemCapability.Telephony.CoreService
C
clevercong 已提交
2693

Y
YOUR_NAME 已提交
2694 2695 2696 2697 2698 2699 2700 2701 2702 2703 2704
|       名称           |                 类型                | 必填 |                          说明                                |
| -------------------- | ----------------------------------- | ---- | ------------------------------------------------------------ |
| longOperatorName     | string                              |  是  | 注册网络的长运营商名称。                                     |
| shortOperatorName    | string                              |  是  | 注册网络的短运营商名称。                                     |
| plmnNumeric          | string                              |  是  | 注册网络的PLMN码。                                           |
| isRoaming            | boolean                             |  是  | 是否处于漫游状态。                                           |
| regState             | [RegState](#regstate)               |  是  | 设备的网络注册状态。                                         |
| cfgTech<sup>8+</sup> | [RadioTechnology](#radiotechnology) |  是  | 设备的无线接入技术。                                         |
| nsaState             | [NsaState](#nsastate)               |  是  | 设备的NSA网络注册状态。                                      |
| isCaActive           | boolean                             |  是  | CA的状态。                                                   |
| isEmergency          | boolean                             |  是  | 此设备是否只允许拨打紧急呼叫。                               |
Z
zengyawen 已提交
2705 2706


C
clevercong 已提交
2707
## RegState
C
clevercong 已提交
2708 2709 2710

网络注册状态。

Z
zengyawen 已提交
2711
**系统能力**:SystemCapability.Telephony.CoreService
Z
zengyawen 已提交
2712

C
clevercong 已提交
2713 2714
| 名称                          | 值   | 说明                       |
| ----------------------------- | ---- | -------------------------- |
2715 2716
| REG_STATE_NO_SERVICE          | 0    | 设备不能使用任何服务,包括数据业务、短信、通话等。     |
| REG_STATE_IN_SERVICE          | 1    | 设备可以正常使用服务,包括数据业务、短信、通话等。     |
C
clevercong 已提交
2717
| REG_STATE_EMERGENCY_CALL_ONLY | 2    | 设备只能使用紧急呼叫业务。 |
2718
| REG_STATE_POWER_OFF           | 3    | 蜂窝无线电已关闭,modem下电,无法和网侧进行通信。      |
Z
zengyawen 已提交
2719

C
clevercong 已提交
2720 2721

## NsaState
C
clevercong 已提交
2722 2723 2724

非独立组网状态。

Z
zengyawen 已提交
2725
**系统能力**:SystemCapability.Telephony.CoreService
C
clevercong 已提交
2726 2727 2728 2729 2730 2731 2732 2733 2734

| 名称                       | 值   | 说明                                                       |
| -------------------------- | ---- | ---------------------------------------------------------- |
| NSA_STATE_NOT_SUPPORT      | 1    | 设备在不支持NSA的LTE小区下处于空闲状态或连接状态。         |
| NSA_STATE_NO_DETECT        | 2    | 在支持NSA但不支持NR覆盖检测的LTE小区下,设备处于空闲状态。 |
| NSA_STATE_CONNECTED_DETECT | 3    | 设备在LTE小区下连接到LTE网络支持NSA和NR覆盖检测。          |
| NSA_STATE_IDLE_DETECT      | 4    | 支持NSA和NR覆盖检测的LTE小区下设备处于空闲状态。           |
| NSA_STATE_DUAL_CONNECTED   | 5    | 设备在支持NSA的LTE小区下连接到LTE + NR网络。               |
| NSA_STATE_SA_ATTACHED      | 6    | 设备在5GC附着时在NG-RAN小区下空闲或连接到NG-RAN小区。      |
Z
zengyawen 已提交
2735 2736


C
clevercong 已提交
2737
## NetworkSelectionMode
C
clevercong 已提交
2738 2739 2740

选网模式。

Z
zengyawen 已提交
2741
**系统能力**:SystemCapability.Telephony.CoreService
C
clevercong 已提交
2742 2743 2744 2745 2746 2747

| 名称                        | 值   | 说明           |
| --------------------------- | ---- | -------------- |
| NETWORK_SELECTION_UNKNOWN   | 0    | 未知选网模式。 |
| NETWORK_SELECTION_AUTOMATIC | 1    | 自动选网模式。 |
| NETWORK_SELECTION_MANUAL    | 2    | 手动选网模式。 |
Y
YOUR_NAME 已提交
2748

C
clevercong 已提交
2749 2750 2751 2752
## PreferredNetworkMode<sup>8+</sup>

首选网络模式。

D
dingxiaochen 已提交
2753
**系统接口:** 此接口为系统接口。
C
clevercong 已提交
2754

Z
zengyawen 已提交
2755
**系统能力**:SystemCapability.Telephony.CoreService
C
clevercong 已提交
2756

C
update  
clevercong 已提交
2757 2758
| 名称                                                      | 值   | 说明                                          |
| --------------------------------------------------------- | ---- | --------------------------------------------- |
C
clevercong 已提交
2759 2760 2761 2762 2763 2764 2765 2766 2767
| PREFERRED_NETWORK_MODE_GSM                                | 1    | 首选GSM网络模式。                             |
| PREFERRED_NETWORK_MODE_WCDMA                              | 2    | 首选WCDMA网络模式。                           |
| PREFERRED_NETWORK_MODE_LTE                                | 3    | 首选LTE网络模式。                             |
| PREFERRED_NETWORK_MODE_LTE_WCDMA                          | 4    | 首选LTE WCDMA网络模式。                       |
| PREFERRED_NETWORK_MODE_LTE_WCDMA_GSM                      | 5    | 首选LTE WCDMA GSM网络模式。                   |
| PREFERRED_NETWORK_MODE_WCDMA_GSM                          | 6    | 首选WCDMA GSM网络模式。                       |
| PREFERRED_NETWORK_MODE_CDMA                               | 7    | 首选CDMA网络模式。                            |
| PREFERRED_NETWORK_MODE_EVDO                               | 8    | 首选EVDO网络模式。                            |
| PREFERRED_NETWORK_MODE_EVDO_CDMA                          | 9    | 首选EVDO CDMA网络模式。                       |
C
update  
clevercong 已提交
2768
| PREFERRED_NETWORK_MODE_WCDMA_GSM_EVDO_CDMA                | 10   | 首选WCDMA GSM EVDO CDMA网络模式。             |
C
clevercong 已提交
2769 2770 2771 2772 2773 2774 2775 2776 2777 2778 2779 2780 2781 2782 2783 2784 2785 2786 2787 2788 2789 2790 2791
| PREFERRED_NETWORK_MODE_LTE_EVDO_CDMA                      | 11   | 首选LTE EVDO CDMA网络模式。                   |
| PREFERRED_NETWORK_MODE_LTE_WCDMA_GSM_EVDO_CDMA            | 12   | 首选LTE WCDMA GSM EVDO CDMA网络模式。         |
| PREFERRED_NETWORK_MODE_TDSCDMA                            | 13   | 首选TDSCDMA网络模式。                         |
| PREFERRED_NETWORK_MODE_TDSCDMA_GSM                        | 14   | 首选TDSCDMA GSM网络模式。                     |
| PREFERRED_NETWORK_MODE_TDSCDMA_WCDMA                      | 15   | 首选TDSCDMA_WCDMA网络模式。                   |
| PREFERRED_NETWORK_MODE_TDSCDMA_WCDMA_GSM                  | 16   | 首选TDSCDMA_WCDMA_GSM网络模式。               |
| PREFERRED_NETWORK_MODE_LTE_TDSCDMA                        | 17   | 首选LTE TDSCDMA网络模式。                     |
| PREFERRED_NETWORK_MODE_LTE_TDSCDMA_GSM                    | 18   | 首选LTE TDSCDMA GSM网络模式。                 |
| PREFERRED_NETWORK_MODE_LTE_TDSCDMA_WCDMA                  | 19   | 首选LTE TDSCDMA WCDMA网络模式。               |
| PREFERRED_NETWORK_MODE_LTE_TDSCDMA_WCDMA_GSM              | 20   | 首选LTE TDSCDMA WCDMA GSM网络模式。           |
| PREFERRED_NETWORK_MODE_TDSCDMA_WCDMA_GSM_EVDO_CDMA        | 21   | 首选TDSCDMA WCDMA GSM EVDO CDMA网络模式。     |
| PREFERRED_NETWORK_MODE_LTE_TDSCDMA_WCDMA_GSM_EVDO_CDMA    | 22   | 首选LTE TDSCDMA WCDMA GSM EVDO CDMA网络模式。 |
| PREFERRED_NETWORK_MODE_NR                                 | 31   | 首选NR网络模式。                              |
| PREFERRED_NETWORK_MODE_NR_LTE                             | 32   | 首选NR LTE网络模式。                          |
| PREFERRED_NETWORK_MODE_NR_LTE_WCDMA                       | 33   | 首选NR LTE WCDMA网络模式。                    |
| PREFERRED_NETWORK_MODE_NR_LTE_WCDMA_GSM                   | 34   | 首选NR LTE WCDMA GSM网络模式。                |
| PREFERRED_NETWORK_MODE_NR_LTE_EVDO_CDMA                   | 35   | 首选NR LTE EVDO CDMA网络模式。                |
| PREFERRED_NETWORK_MODE_NR_LTE_WCDMA_GSM_EVDO_CDMA         | 36   | 首选NR LTE WCDMA GSM EVDO CDMA网络模式。      |
| PREFERRED_NETWORK_MODE_NR_LTE_TDSCDMA                     | 37   | 首选NR LTE TDSCDMA网络模式。                  |
| PREFERRED_NETWORK_MODE_NR_LTE_TDSCDMA_GSM                 | 38   | 首选NR LTE TDSCDMA GSM网络模式。              |
| PREFERRED_NETWORK_MODE_NR_LTE_TDSCDMA_WCDMA               | 39   | 首选NR LTE TDSCDMA WCDMA网络模式。            |
| PREFERRED_NETWORK_MODE_NR_LTE_TDSCDMA_WCDMA_GSM           | 40   | 首选NR LTE TDSCDMA WCDMA GSM网络模式。        |
| PREFERRED_NETWORK_MODE_NR_LTE_TDSCDMA_WCDMA_GSM_EVDO_CDMA | 41   | 首选NR LTE TDSCDMA WCDMA GSM网络模式。        |
C
update  
clevercong 已提交
2792
| PREFERRED_NETWORK_MODE_MAX_VALUE                          | 99   | 首选网络模式最大值。                          |
C
clevercong 已提交
2793 2794 2795 2796 2797

## CellInformation<sup>8+</sup>

小区信息。

D
dingxiaochen 已提交
2798
**系统接口:** 此接口为系统接口。
C
clevercong 已提交
2799

Z
zengyawen 已提交
2800
**系统能力**:SystemCapability.Telephony.CoreService
C
clevercong 已提交
2801

Y
YOUR_NAME 已提交
2802 2803 2804 2805 2806 2807 2808
| 名称              |                  类型                   | 必填 |                           说明                               |
| ----------------- | --------------------------------------- | ---- | ------------------------------------------------------------ |
| networkType       | [NetworkType](#networktype)             |  是  | 获取服务单元的网络类型。                                     |
| isCamped          | boolean                                 |  是  | 获取服务单元的状态。                                         |
| timeStamp         | number                                  |  是  | 获取单元格信息时获取时间戳。                                 |
| signalInformation | [SignalInformation](#signalinformation) |  是  | 信号信息。                                                   |
| data              | [CdmaCellInformation](#cdmacellinformation8) \| [GsmCellInformation](#gsmcellinformation8) \| [LteCellInformation](#ltecellinformation8) \| [NrCellInformation](#nrcellinformation8) \| [TdscdmaCellInformation](#tdscdmacellinformation8) |  是  | Cdma小区信息 \|Gsm小区信息\|Lte小区信息\|Nr小区信息\|Tdscdma小区信息 |
C
clevercong 已提交
2809 2810 2811

## CdmaCellInformation<sup>8+</sup>

2812
CDMA小区信息。
C
clevercong 已提交
2813

D
dingxiaochen 已提交
2814
**系统接口:** 此接口为系统接口。
C
clevercong 已提交
2815

Z
zengyawen 已提交
2816
**系统能力**:SystemCapability.Telephony.CoreService
C
clevercong 已提交
2817

Y
YOUR_NAME 已提交
2818 2819 2820 2821 2822 2823 2824
| 名称      | 类型   | 必填 | 说明         |
| --------- | ------ | ---- | ------------ |
| baseId    | number |  是  | 基站Id。     |
| latitude  | number |  是  | 经度。       |
| longitude | number |  是  | 纬度。       |
| nid       | number |  是  | 网络识别码。 |
| sid       | number |  是  | 系统识别码。 |
C
clevercong 已提交
2825 2826 2827

## GsmCellInformation<sup>8+</sup>

2828
GSM小区信息。
C
clevercong 已提交
2829

D
dingxiaochen 已提交
2830
**系统接口:** 此接口为系统接口。
C
clevercong 已提交
2831

Z
zengyawen 已提交
2832
**系统能力**:SystemCapability.Telephony.CoreService
C
clevercong 已提交
2833

Y
YOUR_NAME 已提交
2834 2835 2836 2837 2838 2839 2840 2841
| 名称   | 类型   | 必填 | 说明                 |
| ------ | ------ | ---- | -------------------- |
| lac    | number |  是  | 位置区编号。         |
| cellId | number |  是  | 小区号。             |
| arfcn  | number |  是  | 绝对无线频率信道号。 |
| bsic   | number |  是  | 基站识别号。         |
| mcc    | string |  是  | 移动国家码。         |
| mnc    | string |  是  | 移动网号。           |
C
clevercong 已提交
2842 2843 2844

## LteCellInformation<sup>8+</sup>

2845
LTE小区信息。
C
clevercong 已提交
2846

D
dingxiaochen 已提交
2847
**系统接口:** 此接口为系统接口。
C
clevercong 已提交
2848

Z
zengyawen 已提交
2849
**系统能力**:SystemCapability.Telephony.CoreService
C
clevercong 已提交
2850

Y
YOUR_NAME 已提交
2851 2852 2853 2854 2855 2856 2857 2858 2859 2860
| 名称          | 类型    | 必填 | 说明                    |
| ------------- | ------- | ---- | ----------------------- |
| cgi           | number  |  是  | 小区全球标识。          |
| pci           | number  |  是  | 物理小区识别。          |
| tac           | number  |  是  | 跟踪区域代码。          |
| earfcn        | number  |  是  | 绝对无线频率信道号。    |
| bandwidth     | number  |  是  | 带宽。                  |
| mcc           | string  |  是  | 移动国家码。            |
| mnc           | string  |  是  | 移动网号。              |
| isSupportEndc | boolean |  是  | 是否支持新无线电_双连接 |
C
clevercong 已提交
2861 2862 2863

## NrCellInformation<sup>8+</sup>

2864
NR小区信息。
C
clevercong 已提交
2865

D
dingxiaochen 已提交
2866
**系统接口:** 此接口为系统接口。
C
clevercong 已提交
2867

Z
zengyawen 已提交
2868
**系统能力**:SystemCapability.Telephony.CoreService
C
clevercong 已提交
2869

Y
YOUR_NAME 已提交
2870 2871 2872 2873 2874 2875 2876 2877
| 名称    | 类型   | 必填 | 说明             |
| ------- | ------ | ---- | ---------------- |
| nrArfcn | number |  是  | 5G频点号。       |
| pci     | number |  是  | 物理小区识别。   |
| tac     | number |  是  | 跟踪区域代码。   |
| nci     | number |  是  | 5G网络小区标识。 |
| mcc     | string |  是  | 移动国家码。     |
| mnc     | string |  是  | 移动网号。       |
C
clevercong 已提交
2878 2879 2880

## TdscdmaCellInformation<sup>8+</sup>

2881
TD-SCDMA小区信息。
C
clevercong 已提交
2882

D
dingxiaochen 已提交
2883
**系统接口:** 此接口为系统接口。
C
clevercong 已提交
2884

Z
zengyawen 已提交
2885
**系统能力**:SystemCapability.Telephony.CoreService
C
clevercong 已提交
2886

Y
YOUR_NAME 已提交
2887 2888 2889 2890 2891 2892 2893 2894
| 名称   | 类型   | 必填 | 说明         |
| ------ | ------ | ---- | ------------ |
| lac    | number |  是  | 位置区编号。 |
| cellId | number |  是  | 小区号。     |
| cpid   | number |  是  | 小区参数Id。 |
| uarfcn | number |  是  | 绝对射频号。 |
| mcc    | string |  是  | 移动国家码。 |
| mnc    | string |  是  | 移动网号。   |
C
clevercong 已提交
2895 2896 2897

## WcdmaCellInformation<sup>8+</sup>

2898
WCDMA小区信息。
C
clevercong 已提交
2899

D
dingxiaochen 已提交
2900
**系统接口:** 此接口为系统接口。
C
clevercong 已提交
2901

Z
zengyawen 已提交
2902
**系统能力**:SystemCapability.Telephony.CoreService
C
clevercong 已提交
2903

Y
YOUR_NAME 已提交
2904 2905 2906 2907 2908 2909 2910 2911
| 名称   | 类型   | 必填 | 说明         |
| ------ | ------ | ---- | ------------ |
| lac    | number |  是  | 位置区编号。 |
| cellId | number |  是  | 小区号。     |
| psc    | number |  是  | 主扰码。     |
| uarfcn | number |  是  | 绝对射频号。 |
| mcc    | string |  是  | 移动国家码。 |
| mnc    | string |  是  | 移动网号。   |
C
clevercong 已提交
2912 2913 2914

## NrOptionMode<sup>8+</sup>

2915
NR的选择模式。
C
clevercong 已提交
2916

D
dingxiaochen 已提交
2917
**系统接口:** 此接口为系统接口。
C
clevercong 已提交
2918

Z
zengyawen 已提交
2919
**系统能力**:SystemCapability.Telephony.CoreService
C
clevercong 已提交
2920 2921 2922

| 名称                 | 值   | 说明                               |
| -------------------- | ---- | ---------------------------------- |
2923 2924 2925 2926
| NR_OPTION_UNKNOWN    | 0    | 未知的NR选择模式。                 |
| NR_OPTION_NSA_ONLY   | 1    | 仅非独立组网的NR选择模式。         |
| NR_OPTION_SA_ONLY    | 2    | 仅独立组网的NR选择模式。           |
| NR_OPTION_NSA_AND_SA | 3    | 非独立组网和独立组网的NR选择模式。 |
C
clevercong 已提交
2927 2928 2929 2930 2931

## NetworkSearchResult

网络搜索结果。

D
dingxiaochen 已提交
2932
**系统接口:** 此接口为系统接口。
C
clevercong 已提交
2933

Z
zengyawen 已提交
2934
**系统能力**:SystemCapability.Telephony.CoreService
C
clevercong 已提交
2935

Y
YOUR_NAME 已提交
2936 2937 2938 2939
| 名称                   | 类型                                              | 必填 | 说明           |
| ---------------------- | ------------------------------------------------- | ---- | -------------- |
| isNetworkSearchSuccess | boolean                                           |  是  | 网络搜索成功。 |
| networkSearchResult    | Array<[NetworkInformation](#networkinformation)\> |  是  | 网络搜索结果。 |
C
clevercong 已提交
2940 2941 2942 2943 2944

## NetworkInformation

网络信息。

D
dingxiaochen 已提交
2945
**系统接口:** 此接口为系统接口。
C
clevercong 已提交
2946

Z
zengyawen 已提交
2947
**系统能力**:SystemCapability.Telephony.CoreService
C
clevercong 已提交
2948

Y
YOUR_NAME 已提交
2949 2950 2951 2952 2953 2954
| 名称            |                         类型                        | 必填 | 说明           |
| --------------- | --------------------------------------------------- | ---- | -------------- |
| operatorName    | string                                              |  是  | 运营商的名称。 |
| operatorNumeric | string                                              |  是  | 运营商数字。   |
| state           | [NetworkInformationState](#networkinformationstate) |  是  | 网络信息状态。 |
| radioTech       | string                                              |  是  | 无线电技术。   |
C
clevercong 已提交
2955 2956 2957 2958 2959

## NetworkInformationState

网络信息状态。

D
dingxiaochen 已提交
2960
**系统接口:** 此接口为系统接口。
C
clevercong 已提交
2961

Z
zengyawen 已提交
2962
**系统能力**:SystemCapability.Telephony.CoreService
C
clevercong 已提交
2963 2964 2965 2966 2967 2968 2969 2970 2971 2972 2973 2974

| 名称              | 值   | 说明             |
| ----------------- | ---- | ---------------- |
| NETWORK_UNKNOWN   | 0    | 网络状态未知。   |
| NETWORK_AVAILABLE | 1    | 网络可用于注册。 |
| NETWORK_CURRENT   | 2    | 已在网络中注册。 |
| NETWORK_FORBIDDEN | 3    | 网络无法注册。   |

## NetworkSelectionModeOptions

网络选择模式选项。

D
dingxiaochen 已提交
2975
**系统接口:** 此接口为系统接口。
C
clevercong 已提交
2976

Z
zengyawen 已提交
2977
**系统能力**:SystemCapability.Telephony.CoreService
C
clevercong 已提交
2978

Y
YOUR_NAME 已提交
2979 2980 2981 2982 2983 2984
| 名称               |                    类型                       | 必填 |                 说明                   |
| ------------------ | --------------------------------------------- | ---- | -------------------------------------- |
| slotId             | number                                        |  是  | 卡槽ID。<br/>- 0:卡槽1<br/>- 1:卡槽2 |
| selectMode         | [NetworkSelectionMode](#networkselectionmode) |  是  | 网络选择模式。                         |
| networkInformation | [NetworkInformation](#networkinformation)     |  是  | 网络信息。                             |
| resumeSelection    | boolean                                       |  是  | 继续选择。                             |
C
clevercong 已提交
2985

C
clevercong 已提交
2986 2987 2988 2989
## ImsRegState<sup>9+</sup>

IMS注册状态。

D
dingxiaochen 已提交
2990
**系统接口:** 此接口为系统接口。
C
clevercong 已提交
2991

Z
zengyawen 已提交
2992
**系统能力**:SystemCapability.Telephony.CoreService
C
clevercong 已提交
2993 2994 2995 2996 2997 2998 2999 3000 3001 3002

| 名称             | 值   | 说明     |
| ---------------- | ---- | -------- |
| IMS_UNREGISTERED | 0    | 未注册。 |
| IMS_REGISTERED   | 1    | 已注册。 |

## ImsRegTech<sup>9+</sup>

IMS注册技术。

D
dingxiaochen 已提交
3003
**系统接口:** 此接口为系统接口。
C
clevercong 已提交
3004

Z
zengyawen 已提交
3005
**系统能力**:SystemCapability.Telephony.CoreService
C
clevercong 已提交
3006 3007 3008 3009 3010 3011 3012 3013 3014 3015 3016 3017

| 名称                    | 值   | 说明            |
| ----------------------- | ---- | --------------- |
| REGISTRATION_TECH_NONE  | 0    | 无注册技术。    |
| REGISTRATION_TECH_LTE   | 1    | LTE注册技术。   |
| REGISTRATION_TECH_IWLAN | 2    | IWLAN注册技术。 |
| REGISTRATION_TECH_NR    | 3    | NR注册技术。    |

## ImsRegInfo<sup>9+</sup>

IMS注册信息。

D
dingxiaochen 已提交
3018
**系统接口:** 此接口为系统接口。
C
clevercong 已提交
3019

Z
zengyawen 已提交
3020
**系统能力**:SystemCapability.Telephony.CoreService
C
clevercong 已提交
3021

Y
YOUR_NAME 已提交
3022 3023 3024 3025
| 名称        | 类型                         | 必填 | 说明          |
| ----------- | ---------------------------- | ---- | ------------- |
| imsRegState | [ImsRegState](#imsregstate9) |  是  | IMS注册状态。 |
| imsRegTech  | [ImsRegTech](#imsregtech9)   |  是  | IMS注册技术。 |
C
clevercong 已提交
3026 3027 3028 3029 3030

## ImsServiceType<sup>9+</sup>

IMS服务类型。

D
dingxiaochen 已提交
3031
**系统接口:** 此接口为系统接口。
C
clevercong 已提交
3032

Z
zengyawen 已提交
3033
**系统能力**:SystemCapability.Telephony.CoreService
C
clevercong 已提交
3034 3035 3036 3037 3038 3039 3040

| 名称       | 值   | 说明       |
| ---------- | ---- | ---------- |
| TYPE_VOICE | 0    | 语音服务。 |
| TYPE_VIDEO | 1    | 视频服务。 |
| TYPE_UT    | 2    | UT服务。   |
| TYPE_SMS   | 3    | 短讯服务。 |