js-apis-radio.md 76.5 KB
Newer Older
Z
zengyawen 已提交
1 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 13 14 15

```
import radio from '@ohos.telephony.radio'
```

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

Z
zengyawen 已提交
33
**示例:**
C
clevercong 已提交
34

Z
zengyawen 已提交
35
```js
Z
zengyawen 已提交
36 37 38 39 40
let slotId = 0;
radio.getRadioTech(slotId, (err, data) =>{ 
    console.log(`callback: err->${JSON.stringify(err)}, data->${JSON.stringify(data)}`);
});
```
C
clevercong 已提交
41 42


C
clevercong 已提交
43
## radio.getRadioTech
C
clevercong 已提交
44 45 46

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

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

C
clevercong 已提交
49
**需要权限**:ohos.permission.GET_NETWORK_INFO
C
clevercong 已提交
50

Y
YOUR_NAME 已提交
51 52
**系统能力**:SystemCapability.Telephony.CoreService

Z
zengyawen 已提交
53
**参数:**
Z
zengyawen 已提交
54

Z
zengyawen 已提交
55 56 57
| 参数名 | 类型   | 必填 | 说明                                   |
| ------ | ------ | ---- | -------------------------------------- |
| slotId | number | 是   | 卡槽ID。<br/>- 0:卡槽1<br/>- 1:卡槽2 |
Z
zengyawen 已提交
58

Z
zengyawen 已提交
59
**返回值:**
Z
zengyawen 已提交
60

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

Z
zengyawen 已提交
65
**示例:**
C
clevercong 已提交
66

Z
zengyawen 已提交
67
```js
Z
zengyawen 已提交
68 69 70 71 72
let slotId = 0;
let promise = radio.getRadioTech(slotId);
promise.then(data => {
    console.log(`getRadioTech success, data->${JSON.stringify(data)}`);
}).catch(err => {
73
    console.log(`getRadioTech failed, err->${JSON.stringify(err)}`);
Z
zengyawen 已提交
74 75
});
```
C
clevercong 已提交
76 77


C
clevercong 已提交
78
## radio.getNetworkState
C
clevercong 已提交
79 80 81

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

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

C
clevercong 已提交
84
**需要权限**:ohos.permission.GET_NETWORK_INFO
C
clevercong 已提交
85

Y
YOUR_NAME 已提交
86 87
**系统能力**:SystemCapability.Telephony.CoreService

Z
zengyawen 已提交
88
**参数:**
Z
zengyawen 已提交
89

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

Z
zengyawen 已提交
94
**示例:**
C
clevercong 已提交
95

Z
zengyawen 已提交
96
```js
Z
zengyawen 已提交
97 98 99 100
radio.getNetworkState((err, data) =>{
    console.log(`callback: err->${JSON.stringify(err)}, data->${JSON.stringify(data)}`);
});
```
C
clevercong 已提交
101 102


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

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

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

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

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

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

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

Z
zengyawen 已提交
120
**示例:**
C
clevercong 已提交
121

Z
zengyawen 已提交
122
```js
Z
zengyawen 已提交
123 124 125 126 127
let slotId = 0;
radio.getNetworkState(slotId, (err, data) => {
    console.log(`callback: err->${JSON.stringify(err)}, data->${JSON.stringify(data)}`);
});
```
C
clevercong 已提交
128 129


C
clevercong 已提交
130
## radio.getNetworkState
C
clevercong 已提交
131 132 133

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

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

C
clevercong 已提交
136
**需要权限**:ohos.permission.GET_NETWORK_INFO
C
clevercong 已提交
137

Y
YOUR_NAME 已提交
138 139
**系统能力**:SystemCapability.Telephony.CoreService

Z
zengyawen 已提交
140
**参数:**
Z
zengyawen 已提交
141

Z
zengyawen 已提交
142 143 144
| 参数名 | 类型   | 必填 | 说明                                   |
| ------ | ------ | ---- | -------------------------------------- |
| slotId | number | 否   | 卡槽ID。<br/>- 0:卡槽1<br/>- 1:卡槽2 |
Z
zengyawen 已提交
145

Z
zengyawen 已提交
146
**返回值:**
Z
zengyawen 已提交
147

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

Z
zengyawen 已提交
152
**示例:**
C
clevercong 已提交
153

Z
zengyawen 已提交
154
```js
Z
zengyawen 已提交
155 156 157 158 159
let slotId = 0;
let promise = radio.getNetworkState(slotId);
promise.then(data => {
    console.log(`getNetworkState success, promise: data->${JSON.stringify(data)}`);
}).catch(err => {
160
    console.log(`getNetworkState failed, promise: err->${JSON.stringify(err)}`);
Z
zengyawen 已提交
161 162
});
```
C
clevercong 已提交
163 164


C
clevercong 已提交
165
## radio.getNetworkSelectionMode
C
clevercong 已提交
166 167 168

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

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

Y
YOUR_NAME 已提交
171 172
**系统能力**:SystemCapability.Telephony.CoreService

Z
zengyawen 已提交
173
**参数:**
Z
zengyawen 已提交
174

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

Z
zengyawen 已提交
180
**示例:**
C
clevercong 已提交
181

Z
zengyawen 已提交
182
```js
Z
zengyawen 已提交
183 184 185 186 187
let slotId = 0;
radio.getNetworkSelectionMode(slotId, (err, data) => {
    console.log(`callback: err->${JSON.stringify(err)}, data->${JSON.stringify(data)}`);
});
```
C
clevercong 已提交
188 189


C
clevercong 已提交
190
## radio.getNetworkSelectionMode
C
clevercong 已提交
191 192 193

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

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

Y
YOUR_NAME 已提交
196 197
**系统能力**:SystemCapability.Telephony.CoreService

Z
zengyawen 已提交
198
**参数:**
Z
zengyawen 已提交
199

Z
zengyawen 已提交
200 201 202
| 参数名 | 类型   | 必填 | 说明                                   |
| ------ | ------ | ---- | -------------------------------------- |
| slotId | number | 是   | 卡槽ID。<br/>- 0:卡槽1<br/>- 1:卡槽2 |
Z
zengyawen 已提交
203

Z
zengyawen 已提交
204
**返回值:**
Z
zengyawen 已提交
205

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

Z
zengyawen 已提交
210
**示例:**
C
clevercong 已提交
211

Z
zengyawen 已提交
212
```js
Z
zengyawen 已提交
213 214 215 216 217
let slotId = 0;
let promise = radio.getNetworkSelectionMode(slotId);
promise.then(data => {
    console.log(`getNetworkSelectionMode success, promise: data->${JSON.stringify(data)}`);
}).catch(err => {
218
    console.log(`getNetworkSelectionMode failed, promise: err->${JSON.stringify(err)}`);
Z
zengyawen 已提交
219 220
});
```
C
clevercong 已提交
221 222


C
clevercong 已提交
223
## radio.getISOCountryCodeForNetwork<sup>7+</sup>
C
clevercong 已提交
224 225 226

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

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

Y
YOUR_NAME 已提交
229 230
**系统能力**:SystemCapability.Telephony.CoreService

Z
zengyawen 已提交
231
**参数:**
Z
zengyawen 已提交
232

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

Z
zengyawen 已提交
238
**示例:**
C
clevercong 已提交
239

Z
zengyawen 已提交
240
```js
Z
zengyawen 已提交
241 242 243 244 245
let slotId = 0;
radio.getISOCountryCodeForNetwork(slotId, (err, data) => {
    console.log(`callback: err->${JSON.stringify(err)}, data->${JSON.stringify(data)}`);
});
```
C
clevercong 已提交
246 247


C
clevercong 已提交
248
## radio.getISOCountryCodeForNetwork<sup>7+</sup>
C
clevercong 已提交
249 250 251

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

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

Y
YOUR_NAME 已提交
254 255
**系统能力**:SystemCapability.Telephony.CoreService

Z
zengyawen 已提交
256
**参数:**
Z
zengyawen 已提交
257

Z
zengyawen 已提交
258 259 260
| 参数名 | 类型   | 必填 | 说明                                   |
| ------ | ------ | ---- | -------------------------------------- |
| slotId | number | 是   | 卡槽ID。<br/>- 0:卡槽1<br/>- 1:卡槽2 |
Z
zengyawen 已提交
261

Z
zengyawen 已提交
262
**返回值:**
Z
zengyawen 已提交
263

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

Z
zengyawen 已提交
268
**示例:**
C
clevercong 已提交
269

Z
zengyawen 已提交
270
```js
Z
zengyawen 已提交
271 272 273 274 275
let slotId = 0;
let promise = radio.getISOCountryCodeForNetwork(slotId);
promise.then(data => {
    console.log(`getISOCountryCodeForNetwork success, promise: data->${JSON.stringify(data)}`);
}).catch(err => {
276
    console.log(`getISOCountryCodeForNetwork failed, promise: err->${JSON.stringify(err)}`);
Z
zengyawen 已提交
277 278
});
```
C
clevercong 已提交
279 280


C
clevercong 已提交
281
## radio.getPrimarySlotId<sup>7+</sup>
Y
YOUR_NAME 已提交
282 283 284

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

285
获取主卡所在卡槽的索引号。使用callback异步回调。
Y
YOUR_NAME 已提交
286 287 288 289 290 291 292 293 294 295 296

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

**参数:**

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

**示例:**

Z
zengyawen 已提交
297
```js
Y
YOUR_NAME 已提交
298 299 300 301 302 303
radio.getPrimarySlotId((err, data) => {
   console.log(`callback: err->${JSON.stringify(err)}, data->${JSON.stringify(data)}`);
});
```


C
clevercong 已提交
304
## radio.getPrimarySlotId<sup>7+</sup>
Y
YOUR_NAME 已提交
305 306 307

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

308
获取主卡所在卡槽的索引号。使用Promise异步回调。
Y
YOUR_NAME 已提交
309 310 311 312 313 314 315 316 317 318 319

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

**返回值:**

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

**示例:**

Z
zengyawen 已提交
320
```js
Y
YOUR_NAME 已提交
321 322 323 324
let promise = radio.getPrimarySlotId();
promise.then(data => {
    console.log(`getPrimarySlotId success, promise: data->${JSON.stringify(data)}`);
}).catch(err => {
325
    console.error(`getPrimarySlotId failed, promise: err->${JSON.stringify(err)}`);
Y
YOUR_NAME 已提交
326 327 328 329
});
```


C
clevercong 已提交
330
## radio.getSignalInformation<sup>7+</sup>
C
clevercong 已提交
331 332 333

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

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

Y
YOUR_NAME 已提交
336 337
**系统能力**:SystemCapability.Telephony.CoreService

Z
zengyawen 已提交
338
**参数:**
Z
zengyawen 已提交
339

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

Z
zengyawen 已提交
345
**示例:**
C
clevercong 已提交
346

Z
zengyawen 已提交
347
```js
Z
zengyawen 已提交
348 349 350 351 352
let slotId = 0;
radio.getSignalInformation(slotId, (err, data) => {
   console.log(`callback: err->${JSON.stringify(err)}, data->${JSON.stringify(data)}`);
});
```
C
clevercong 已提交
353 354


C
clevercong 已提交
355
## radio.getSignalInformation<sup>7+</sup>
C
clevercong 已提交
356 357 358

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

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

Y
YOUR_NAME 已提交
361 362
**系统能力**:SystemCapability.Telephony.CoreService

Z
zengyawen 已提交
363
**参数:**
Z
zengyawen 已提交
364

Z
zengyawen 已提交
365 366 367
| 参数名 | 类型   | 必填 | 说明                                   |
| ------ | ------ | ---- | -------------------------------------- |
| slotId | number | 是   | 卡槽ID。<br/>- 0:卡槽1<br/>- 1:卡槽2 |
Z
zengyawen 已提交
368

Z
zengyawen 已提交
369
**返回值:**
Z
zengyawen 已提交
370

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

Z
zengyawen 已提交
375
**示例:**
C
clevercong 已提交
376

Z
zengyawen 已提交
377
```js
Z
zengyawen 已提交
378 379 380 381 382
let slotId = 0;
let promise = radio.getSignalInformation(slotId);
promise.then(data => {
    console.log(`getSignalInformation success, promise: data->${JSON.stringify(data)}`);
}).catch(err => {
383
    console.error(`getSignalInformation failed, promise: err->${JSON.stringify(err)}`);
Z
zengyawen 已提交
384 385
});
```
C
clevercong 已提交
386

D
dingxiaochen 已提交
387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406
## radio.isNrSupported<sup>7+</sup>

isNrSupported\(\): boolean

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

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

**返回值:**

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

**示例:**

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

C
clevercong 已提交
408
## radio.isNrSupported<sup>8+</sup>
Y
YOUR_NAME 已提交
409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429

isNrSupported\(slotId: number\): boolean

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

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

**参数:**

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

**返回值:**

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

**示例:**

Z
zengyawen 已提交
430
```js
Y
YOUR_NAME 已提交
431 432
let slotId = 0;
let result = radio.isNrSupported(slotId);
433
console.log("Result: "+ result);
Y
YOUR_NAME 已提交
434 435 436
```


C
clevercong 已提交
437
## radio.isRadioOn<sup>7+</sup>
C
clevercong 已提交
438 439 440

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

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

C
clevercong 已提交
443
**需要权限**:ohos.permission.GET_NETWORK_INFO
C
clevercong 已提交
444

Y
YOUR_NAME 已提交
445 446
**系统能力**:SystemCapability.Telephony.CoreService

Z
zengyawen 已提交
447
**参数:**
Z
zengyawen 已提交
448

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

Z
zengyawen 已提交
453
**示例:**
C
clevercong 已提交
454

Z
zengyawen 已提交
455
```js
Z
zengyawen 已提交
456 457 458 459
radio.isRadioOn((err, data) => {
    console.log(`callback: err->${JSON.stringify(err)}, data->${JSON.stringify(data)}`);
});
```
C
clevercong 已提交
460 461


C
clevercong 已提交
462
## radio.isRadioOn<sup>7+</sup>
C
clevercong 已提交
463

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

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

C
clevercong 已提交
468
**需要权限**:ohos.permission.GET_NETWORK_INFO
Y
YOUR_NAME 已提交
469 470 471 472 473 474 475 476 477 478 479 480

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

**参数:**

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

**示例:**

Z
zengyawen 已提交
481
```js
Y
YOUR_NAME 已提交
482 483 484 485 486 487 488
let slotId = 0;
radio.isRadioOn(slotId, (err, data) => {
    console.log(`callback: err->${JSON.stringify(err)}, data->${JSON.stringify(data)}`);
});
```


C
clevercong 已提交
489
## radio.isRadioOn<sup>7+</sup>
Y
YOUR_NAME 已提交
490 491

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

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

C
clevercong 已提交
495
**需要权限**:ohos.permission.GET_NETWORK_INFO
C
clevercong 已提交
496

Y
YOUR_NAME 已提交
497 498
**系统能力**:SystemCapability.Telephony.CoreService

Y
YOUR_NAME 已提交
499 500 501 502 503 504
**参数:**

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

Z
zengyawen 已提交
505
**返回值:**
Z
zengyawen 已提交
506

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

Z
zengyawen 已提交
511
**示例:**
C
clevercong 已提交
512

Z
zengyawen 已提交
513
```js
Y
YOUR_NAME 已提交
514 515
let slotId = 0;
let promise = radio.isRadioOn(slotId);
Z
zengyawen 已提交
516 517 518
promise.then(data => {
    console.log(`isRadioOn success, promise: data->${JSON.stringify(data)}`);
}).catch(err => {
519
    console.error(`isRadioOn failed, promise: err->${JSON.stringify(err)}`);
Z
zengyawen 已提交
520 521
});
```
C
clevercong 已提交
522 523


C
clevercong 已提交
524
## radio.getOperatorName<sup>7+</sup>
Y
YOUR_NAME 已提交
525 526 527

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

528
获取运营商名称。使用callback异步回调。
Y
YOUR_NAME 已提交
529 530 531 532 533 534 535 536

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

**参数:**

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

**示例:**

Z
zengyawen 已提交
541
```js
Y
YOUR_NAME 已提交
542 543 544 545 546 547 548
let slotId = 0;
radio.getOperatorName(slotId, (err, data) => {
    console.log(`callback: err->${JSON.stringify(err)}, data->${JSON.stringify(data)}`);
});
```


C
clevercong 已提交
549
## radio.getOperatorName<sup>7+</sup>
Y
YOUR_NAME 已提交
550 551 552

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

553
获取运营商名称。使用Promise异步回调。
Y
YOUR_NAME 已提交
554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570

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

**参数:**

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

**返回值:**

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

**示例:**

Z
zengyawen 已提交
571
```js
Y
YOUR_NAME 已提交
572 573 574 575 576
let slotId = 0;
let promise = radio.getOperatorName(slotId);
promise.then(data => {
    console.log(`getOperatorName success, promise: data->${JSON.stringify(data)}`);
}).catch(err => {
577
    console.log(`getOperatorName failed, promise: err->${JSON.stringify(err)}`);
Y
YOUR_NAME 已提交
578 579 580
});
```

Y
YOUR_NAME 已提交
581 582 583 584
## radio.setPrimarySlotId<sup>8+</sup>

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

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

C
clevercong 已提交
587 588
此接口为系统接口。

Y
YOUR_NAME 已提交
589 590 591 592 593 594 595 596 597
**需要权限**:ohos.permission.SET_TELEPHONY_STATE

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

**参数:**

| 参数名   | 类型                  | 必填 | 说明                                   |
| -------- | --------------------- | ---- | -------------------------------------- |
| slotId   | number                | 是   | 卡槽ID。<br/>- 0:卡槽1<br/>- 1:卡槽2 |
C
clevercong 已提交
598
| callback | AsyncCallback\<void\> | 是   | 回调函数。                             |
Y
YOUR_NAME 已提交
599 600 601 602 603 604 605 606 607 608 609 610 611 612 613

**示例:**

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


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

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

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

C
clevercong 已提交
616 617
此接口为系统接口。

Y
YOUR_NAME 已提交
618 619 620 621 622 623 624 625 626 627 628 629 630 631
**需要权限**:ohos.permission.SET_TELEPHONY_STATE

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

**参数:**

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

**返回值:**

| 类型            | 说明                            |
| --------------- | ------------------------------- |
C
clevercong 已提交
632
| Promise\<void\> | 以Promise形式异步返回设置结果。 |
Y
YOUR_NAME 已提交
633 634 635 636 637 638 639 640 641

**示例:**

```js
let slotId = 0;
let promise = radio.setPrimarySlotId(slotId);
promise.then(data => {
    console.log(`setPrimarySlotId success, promise: data->${JSON.stringify(data)}`);
}).catch(err => {
642
    console.log(`setPrimarySlotId failed, promise: err->${JSON.stringify(err)}`);
Y
YOUR_NAME 已提交
643 644 645 646 647 648 649
});
```

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

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

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

C
clevercong 已提交
652 653
此接口为系统接口。

Y
YOUR_NAME 已提交
654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676
**需要权限**:ohos.permission.GET_TELEPHONY_STATE

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

**参数:**

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

**示例:**

```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

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

C
clevercong 已提交
679 680
此接口为系统接口。

Y
YOUR_NAME 已提交
681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705
**需要权限**:ohos.permission.GET_TELEPHONY_STATE

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

**参数:**

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

**示例:**

```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\>

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

C
clevercong 已提交
708 709
此接口为系统接口。

Y
YOUR_NAME 已提交
710 711 712 713 714 715 716 717 718 719 720 721 722 723
**需要权限**:ohos.permission.GET_TELEPHONY_STATE

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

**参数:**

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

**返回值:**

| 类型              | 说明                                       |
| ----------------- | ------------------------------------------ |
C
clevercong 已提交
724
| Promise\<string\> | 以Promise形式异步返回IMEI;如果IMEI不存在,则返回空字符串。 |
Y
YOUR_NAME 已提交
725 726 727 728 729 730 731 732 733

**示例:**

```js
let slotId = 0;
let promise = radio.getIMEI(slotId);
promise.then(data => {
    console.log(`getIMEI success, promise: data->${JSON.stringify(data)}`);
}).catch(err => {
734
    console.error(`getIMEI failed, promise: err->${JSON.stringify(err)}`);
Y
YOUR_NAME 已提交
735 736 737 738 739 740 741
});
```

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

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

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

C
clevercong 已提交
744 745
此接口为系统接口。

Y
YOUR_NAME 已提交
746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768
**需要权限**:ohos.permission.GET_TELEPHONY_STATE

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

**参数:**

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

**示例:**

```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

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

C
clevercong 已提交
771 772
此接口为系统接口。

Y
YOUR_NAME 已提交
773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797
**需要权限**:ohos.permission.GET_TELEPHONY_STATE

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

**参数:**

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

**示例:**

```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\>

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

C
clevercong 已提交
800 801
此接口为系统接口。

Y
YOUR_NAME 已提交
802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825
**需要权限**:ohos.permission.GET_TELEPHONY_STATE

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

**参数:**

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

**返回值:**

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

**示例:**

```js
let slotId = 0;
let promise = radio.getMEID(slotId);
promise.then(data => {
    console.log(`getMEID success, promise: data->${JSON.stringify(data)}`);
}).catch(err => {
826
    console.error(`getMEID failed, promise: err->${JSON.stringify(err)}`);
Y
YOUR_NAME 已提交
827 828 829 830 831 832 833
});
```

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

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

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

C
clevercong 已提交
836 837
此接口为系统接口。

Y
YOUR_NAME 已提交
838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860
**需要权限**:ohos.permission.GET_TELEPHONY_STATE

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

**参数:**

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

**示例:**

```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

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

C
clevercong 已提交
863 864
此接口为系统接口。

Y
YOUR_NAME 已提交
865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889
**需要权限**:ohos.permission.GET_TELEPHONY_STATE

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

**参数:**

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

**示例:**

```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\>

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

C
clevercong 已提交
892 893
此接口为系统接口。

Y
YOUR_NAME 已提交
894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917
**需要权限**:ohos.permission.GET_TELEPHONY_STATE

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

**参数:**

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

**返回值:**

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

**示例:**

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

C
clevercong 已提交
922 923 924 925
## radio.sendUpdateCellLocationRequest<sup>8+</sup>

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

926
发送更新小区位置请求。使用callback异步回调。
C
clevercong 已提交
927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947

此接口为系统接口。

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

**参数:**

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

**示例:**

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

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

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

950
发送更新小区位置请求。使用callback异步回调。
Y
YOUR_NAME 已提交
951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974

此接口为系统接口。

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

**参数:**

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

**示例:**

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

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

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

976
发送更新小区位置请求。使用Promise异步回调。
C
clevercong 已提交
977 978 979 980 981

此接口为系统接口。

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

Y
YOUR_NAME 已提交
982 983 984 985 986 987
**参数:**

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

C
clevercong 已提交
988 989 990 991 992 993 994 995 996
**返回值:**

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

**示例:**

```js
Y
YOUR_NAME 已提交
997 998
let slotId = 0;
let promise = radio.sendUpdateCellLocationRequest(slotId);
C
clevercong 已提交
999 1000 1001
promise.then(data => {
    console.log(`sendUpdateCellLocationRequest success, promise: data->${JSON.stringify(data)}`);
}).catch(err => {
1002
    console.log(`sendUpdateCellLocationRequest failed, promise: err->${JSON.stringify(err)}`);
C
clevercong 已提交
1003 1004 1005 1006 1007 1008 1009
});
```

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

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

1010
获取小区信息。使用callback异步回调。
C
clevercong 已提交
1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021

此接口为系统接口。

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

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

**参数:**

| 参数名   | 类型                                                         | 必填 | 说明                     |
| -------- | ------------------------------------------------------------ | ---- | ------------------------ |
1022
| callback | AsyncCallback\<Array<[CellInformation](#cellinformation8)\>\> | 是   | 回调函数。 |
C
clevercong 已提交
1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036

**示例:**

```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

1037
获取小区信息。使用callback异步回调。
C
clevercong 已提交
1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049

此接口为系统接口。

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

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

**参数:**

| 参数名   | 类型                                                         | 必填 | 说明                                   |
| -------- | ------------------------------------------------------------ | ---- | -------------------------------------- |
| slotId   | number                                                       | 是   | 卡槽ID。<br/>- 0:卡槽1<br/>- 1:卡槽2 |
1050
| callback | AsyncCallback\<Array<[CellInformation](#cellinformation8)\>\> | 是   | 回调函数。               |
C
clevercong 已提交
1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065

**示例:**

```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\>\>

1066
获取小区信息。使用Promise异步回调。
C
clevercong 已提交
1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081

此接口为系统接口。

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

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

**参数:**

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

**返回值:**

C
update  
clevercong 已提交
1082 1083 1084
| 类型                                                    | 说明                    |
| ------------------------------------------------------- | ----------------------- |
| Promise\<Array<[CellInformation](#cellinformation8)\>\> | 以Promise形式返回结果。 |
C
clevercong 已提交
1085 1086 1087 1088 1089 1090 1091 1092 1093

**示例:**

```js
let slotId = 0;
let promise = radio.getCellInformation(slotId);
promise.then(data => {
    console.log(`getCellInformation success, promise: data->${JSON.stringify(data)}`);
}).catch(err => {
1094
    console.error(`getCellInformation failed, promise: err->${JSON.stringify(err)}`);
C
clevercong 已提交
1095 1096 1097 1098 1099 1100 1101
});
```

## radio.setNetworkSelectionMode

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

1102
设置网络选择模式。使用callback异步回调。
C
clevercong 已提交
1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113

此接口为系统接口。

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

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

**参数:**

| 参数名   | 类型                                                        | 必填 | 说明               |
| -------- | ----------------------------------------------------------- | ---- | ------------------ |
C
update  
clevercong 已提交
1114
| options  | [NetworkSelectionModeOptions](#networkselectionmodeoptions) | 是   | 网络选择模式选项。 |
C
clevercong 已提交
1115 1116 1117 1118 1119 1120 1121 1122
| callback | AsyncCallback\<void\>                                       | 是   | 回调函数。         |

**示例:**

```js
let networkInformation={
    operatorName: "中国移动",
    operatorNumeric: "898600",
D
dingxiaochen 已提交
1123
    state: radio.NetworkInformationState.NETWORK_AVAILABLE,
C
clevercong 已提交
1124 1125 1126
    radioTech: "CS"
}
let networkSelectionModeOptions={
D
dingxiaochen 已提交
1127 1128
    slotId: 0,
    selectMode: radio.NetworkSelectionMode.NETWORK_SELECTION_AUTOMATIC,
C
clevercong 已提交
1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140
    networkInformation: networkInformation,
    resumeSelection: true
}
radio.setNetworkSelectionMode(networkSelectionModeOptions, (err, data) => {
    console.log(`callback: err->${JSON.stringify(err)}, data->${JSON.stringify(data)}`);
});
```

## radio.setNetworkSelectionMode

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

1141
设置网络选择模式。使用Promise异步回调。
C
clevercong 已提交
1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152

此接口为系统接口。

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

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

**参数:**

| 参数名  | 类型                                                        | 必填 | 说明               |
| ------- | ----------------------------------------------------------- | ---- | ------------------ |
C
update  
clevercong 已提交
1153
| options | [NetworkSelectionModeOptions](#networkselectionmodeoptions) | 是   | 网络选择模式选项。 |
C
clevercong 已提交
1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166

**返回值:**

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

**示例:**

```js
let networkInformation={
    operatorName: "中国移动",
    operatorNumeric: "898600",
D
dingxiaochen 已提交
1167
    state: radio.NetworkInformationState.NETWORK_AVAILABLE,
C
clevercong 已提交
1168 1169 1170
    radioTech: "CS"
}
let networkSelectionModeOptions={
D
dingxiaochen 已提交
1171 1172
    slotId: 0,
    selectMode: radio.NetworkSelectionMode.NETWORK_SELECTION_AUTOMATIC,
C
clevercong 已提交
1173 1174 1175 1176 1177 1178 1179
    networkInformation: networkInformation,
    resumeSelection: true
}
let promise = radio.setNetworkSelectionMode(networkSelectionModeOptions);
promise.then(data => {
    console.log(`setNetworkSelectionMode success, promise: data->${JSON.stringify(data)}`);
}).catch(err => {
1180
    console.log(`setNetworkSelectionMode failed, promise: err->${JSON.stringify(err)}`);
C
clevercong 已提交
1181 1182 1183 1184 1185 1186 1187
});
```

## radio.getNetworkSearchInformation

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

1188
获取网络搜索信息。使用callback异步回调。
C
clevercong 已提交
1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200

此接口为系统接口。

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

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

**参数:**

| 参数名   | 类型                                                         | 必填 | 说明                                   |
| -------- | ------------------------------------------------------------ | ---- | -------------------------------------- |
| slotId   | number                                                       | 是   | 卡槽ID。<br/>- 0:卡槽1<br/>- 1:卡槽2 |
1201
| callback | AsyncCallback\<[NetworkSearchResult](#networksearchresult)\> | 是   | 回调函数。           |
C
clevercong 已提交
1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212

**示例:**

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

## radio.getNetworkSearchInformation

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

1215
获取网络搜索信息。使用Promise异步回调。
C
clevercong 已提交
1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232

此接口为系统接口。

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

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

**参数:**

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

**返回值:**

| 类型                                                   | 说明                    |
| ------------------------------------------------------ | ----------------------- |
C
update  
clevercong 已提交
1233
| Promise\<[NetworkSearchResult](#networksearchresult)\> | 以Promise形式返回结果。 |
C
clevercong 已提交
1234 1235 1236 1237 1238 1239 1240 1241

**示例:**

```js
let promise = radio.getNetworkSearchInformation(0);
promise.then(data => {
    console.log(`getNetworkSearchInformation success, promise: data->${JSON.stringify(data)}`);
}).catch(err => {
1242
    console.log(`getNetworkSearchInformation failed, promise: err->${JSON.stringify(err)}`);
C
clevercong 已提交
1243 1244 1245 1246 1247 1248 1249
});
```

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

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

1250
获取Nr选项模式 。使用callback异步回调。
C
clevercong 已提交
1251 1252 1253 1254 1255 1256 1257

此接口为系统接口。

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

**参数:**

C
update  
clevercong 已提交
1258 1259 1260
| 参数名   | 类型                                            | 必填 | 说明       |
| -------- | ----------------------------------------------- | ---- | ---------- |
| callback | AsyncCallback\<[NrOptionMode](#nroptionmode8)\> | 是   | 回调函数。 |
C
clevercong 已提交
1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274

**示例:**

```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

1275
获取Nr选项模式 。使用callback异步回调。
C
clevercong 已提交
1276 1277 1278 1279 1280 1281 1282

此接口为系统接口。

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

**参数:**

C
update  
clevercong 已提交
1283 1284 1285 1286
| 参数名   | 类型                                            | 必填 | 说明                                   |
| -------- | ----------------------------------------------- | ---- | -------------------------------------- |
| slotId   | number                                          | 是   | 卡槽ID。<br/>- 0:卡槽1<br/>- 1:卡槽2 |
| callback | AsyncCallback\<[NrOptionMode](#nroptionmode8)\> | 是   | 回调函数。                             |
C
clevercong 已提交
1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301

**示例:**

```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\>

1302
获取Nr选项模式 。使用Promise异步回调。
C
clevercong 已提交
1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315

此接口为系统接口。

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

**参数:**

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

**返回值:**

C
update  
clevercong 已提交
1316 1317 1318
| 类型                                      | 说明                    |
| ----------------------------------------- | ----------------------- |
| Promise\<[NrOptionMode](#nroptionmode8)\> | 以Promise形式返回结果。 |
C
clevercong 已提交
1319 1320 1321 1322 1323 1324 1325 1326 1327

**示例:**

```js
let slotId = 0;
let promise = radio.getNrOptionMode(slotId);
promise.then(data => {
    console.log(`getNrOptionMode success, promise: data->${JSON.stringify(data)}`);
}).catch(err => {
1328
    console.error(`getNrOptionMode failed, promise: err->${JSON.stringify(err)}`);
C
clevercong 已提交
1329 1330 1331 1332 1333 1334 1335
});
```

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

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

1336
打开Radio。使用callback异步回调。
C
clevercong 已提交
1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362

此接口为系统接口。

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

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

**参数:**

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

**示例:**

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


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

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

1363
打开Radio。使用callback异步回调。
C
clevercong 已提交
1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391

此接口为系统接口。

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

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

**参数:**

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

**示例:**

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


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

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

1392
打开Radio。使用Promise异步回调。
C
clevercong 已提交
1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407

此接口为系统接口。

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

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

**参数:**

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

**返回值:**

C
update  
clevercong 已提交
1408 1409 1410
| 类型            | 说明                    |
| --------------- | ----------------------- |
| Promise\<void\> | 以Promise形式返回结果。 |
C
clevercong 已提交
1411 1412 1413 1414 1415 1416 1417 1418 1419

**示例:**

```js
let slotId = 0;
let promise = radio.turnOnRadio(slotId);
promise.then(data => {
    console.log(`turnOnRadio success, promise: data->${JSON.stringify(data)}`);
}).catch(err => {
1420
    console.error(`turnOnRadio failed, promise: err->${JSON.stringify(err)}`);
C
clevercong 已提交
1421 1422 1423 1424 1425 1426 1427
});
```

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

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

1428
关闭Radio。使用callback异步回调。
C
clevercong 已提交
1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454

此接口为系统接口。

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

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

**参数:**

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

**示例:**

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


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

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

1455
关闭Radio。使用callback异步回调。
C
clevercong 已提交
1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483

此接口为系统接口。

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

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

**参数:**

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

**示例:**

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


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

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

1484
关闭Radio。使用Promise异步回调。
C
clevercong 已提交
1485 1486 1487 1488 1489 1490 1491 1492 1493 1494 1495 1496 1497 1498 1499

此接口为系统接口。

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

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

**参数:**

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

**返回值:**

C
update  
clevercong 已提交
1500 1501 1502
| 类型            | 说明                    |
| --------------- | ----------------------- |
| Promise\<void\> | 以Promise形式返回结果。 |
C
clevercong 已提交
1503 1504 1505 1506 1507 1508 1509 1510 1511

**示例:**

```js
let slotId = 0;
let promise = radio.turnOffRadio(slotId);
promise.then(data => {
    console.log(`turnOffRadio success, promise: data->${JSON.stringify(data)}`);
}).catch(err => {
1512
    console.error(`turnOffRadio failed, promise: err->${JSON.stringify(err)}`);
C
clevercong 已提交
1513 1514 1515 1516 1517 1518 1519
});
```

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

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

1520
设置首选网络。使用callback异步回调。
C
clevercong 已提交
1521 1522 1523 1524 1525 1526 1527 1528 1529

此接口为系统接口。

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

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

**参数:**

C
update  
clevercong 已提交
1530 1531 1532
| 参数名      | 类型                                           | 必填 | 说明                                   |
| ----------- | ---------------------------------------------- | ---- | -------------------------------------- |
| slotId      | number                                         | 是   | 卡槽ID。<br/>- 0:卡槽1<br/>- 1:卡槽2 |
1533
| networkMode | [PreferredNetworkMode](#preferrednetworkmode8) | 是   | 设置首选网络模式。                       |
C
update  
clevercong 已提交
1534
| callback    | AsyncCallback\<void\>                          | 是   | 回调函数。                             |
C
clevercong 已提交
1535 1536 1537 1538

**示例:**

```js
C
update  
clevercong 已提交
1539
radio.setPreferredNetwork(0, 1, (err, data) => {
C
clevercong 已提交
1540 1541 1542 1543 1544 1545 1546 1547
    console.log(`callback: err->${JSON.stringify(err)}, data->${JSON.stringify(data)}`);
});
```

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

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

1548
设置首选网络。使用Promise异步回调。
C
clevercong 已提交
1549 1550 1551 1552 1553 1554 1555 1556 1557

此接口为系统接口。

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

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

**参数:**

C
update  
clevercong 已提交
1558 1559 1560
| 参数名      | 类型                                           | 必填 | 说明                                   |
| ----------- | ---------------------------------------------- | ---- | -------------------------------------- |
| slotId      | number                                         | 是   | 卡槽ID。<br/>- 0:卡槽1<br/>- 1:卡槽2 |
1561
| networkMode | [PreferredNetworkMode](#preferrednetworkmode8) | 是   | 设置首选网络模式。                       |
C
clevercong 已提交
1562 1563 1564

**返回值:**

C
update  
clevercong 已提交
1565 1566 1567
| 类型            | 说明                    |
| --------------- | ----------------------- |
| Promise\<void\> | 以Promise形式返回结果。 |
C
clevercong 已提交
1568 1569 1570 1571

**示例:**

```js
C
update  
clevercong 已提交
1572
let promise = radio.setPreferredNetwork(0, 1);
C
clevercong 已提交
1573 1574 1575
promise.then(data => {
    console.log(`setPreferredNetwork success, promise: data->${JSON.stringify(data)}`);
}).catch(err => {
1576
    console.log(`setPreferredNetwork failed, promise: err->${JSON.stringify(err)}`);
C
clevercong 已提交
1577 1578 1579 1580 1581 1582 1583
});
```

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

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

1584
获取首选网络。使用callback异步回调。
C
clevercong 已提交
1585 1586 1587 1588 1589 1590 1591 1592 1593

此接口为系统接口。

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

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

**参数:**

C
update  
clevercong 已提交
1594 1595 1596 1597
| 参数名   | 类型                                                         | 必填 | 说明                                   |
| -------- | ------------------------------------------------------------ | ---- | -------------------------------------- |
| slotId   | number                                                       | 是   | 卡槽ID。<br/>- 0:卡槽1<br/>- 1:卡槽2 |
| callback | AsyncCallback\<[PreferredNetworkMode](#preferrednetworkmode8)\> | 是   | 回调函数。                             |
C
clevercong 已提交
1598 1599 1600 1601 1602 1603 1604 1605 1606 1607 1608

**示例:**

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

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

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

1611
获取首选网络。使用Promise异步回调。
C
clevercong 已提交
1612 1613 1614 1615 1616 1617 1618 1619 1620 1621 1622 1623 1624 1625 1626 1627 1628 1629 1630 1631 1632 1633 1634 1635 1636 1637

此接口为系统接口。

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

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

**参数:**

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

**返回值:**

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

**示例:**

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

C
clevercong 已提交
1642 1643 1644 1645
## radio.getImsRegInfo<sup>9+</sup>

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

1646
获取特定IMS服务类型的IMS注册状态信息。使用callback异步回调。
C
clevercong 已提交
1647 1648 1649 1650 1651 1652 1653 1654 1655 1656 1657 1658 1659 1660 1661 1662 1663 1664

此接口为系统接口。

**需要权限**: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)\> | 是   | 回调函数。                             |

**示例:**

```js
D
dingxiaochen 已提交
1665
radio.getImsRegInfo(0, radio.ImsServiceType.TYPE_VIDEO, (err, data) => {
C
clevercong 已提交
1666 1667 1668 1669 1670 1671 1672 1673
    console.log(`callback: err->${JSON.stringify(err)}, data->${JSON.stringify(data)}`);
});
```

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

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

1674
获取特定IMS服务类型的IMS注册状态信息。使用Promise异步回调。
C
clevercong 已提交
1675 1676 1677 1678 1679 1680 1681 1682 1683 1684 1685 1686 1687 1688 1689 1690 1691 1692 1693 1694 1695 1696 1697

此接口为系统接口。

**需要权限**: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形式返回结果。 |

**示例:**

```js
D
dingxiaochen 已提交
1698
let promise = radio.getImsRegInfo(0, radio.ImsServiceType.TYPE_VIDEO);
C
clevercong 已提交
1699 1700 1701
promise.then(data => {
    console.log(`getImsRegInfo success, promise: data->${JSON.stringify(data)}`);
}).catch(err => {
1702
    console.log(`getImsRegInfo failed, promise: err->${JSON.stringify(err)}`);
C
clevercong 已提交
1703 1704 1705 1706 1707 1708 1709 1710 1711 1712 1713 1714 1715 1716 1717 1718 1719 1720 1721 1722 1723 1724 1725 1726 1727 1728 1729
});
```

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

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

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

此接口为系统接口。

**需要权限**: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)> | 是   | 回调函数。                             |

**示例:**

```js
D
dingxiaochen 已提交
1730
radio.on('imsRegStateChange', 0, radio.ImsServiceType.TYPE_VIDEO, (err, data) => {
C
clevercong 已提交
1731 1732 1733 1734 1735 1736 1737 1738 1739 1740 1741 1742 1743 1744 1745 1746 1747 1748 1749 1750 1751 1752 1753 1754 1755 1756 1757 1758
    console.log(`callback: err->${JSON.stringify(err)}, data->${JSON.stringify(data)}`);
});
```

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

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

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

此接口为系统接口。

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

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

**参数:**

| 参数名   | 类型                                 | 必填 | 说明                                   |
| -------- | ------------------------------------ | ---- | -------------------------------------- |
| type     | string                               | 是   | 通话结束时取消监听通话详情的变化。     |
| slotId   | number                               | 是   | 卡槽ID。<br/>- 0:卡槽1<br/>- 1:卡槽2 |
| imsType  | [ImsServiceType](#imsservicetype9)   | 是   | IMS服务类型。                          |
| callback | Callback<[ImsRegInfo](#imsreginfo9)> | 否   | 回调函数。                             |

**示例:**

```js
D
dingxiaochen 已提交
1759
radio.off('imsRegStateChange', 0, radio.ImsServiceType.TYPE_VIDEO, (err, data) => {
C
clevercong 已提交
1760 1761 1762 1763
    console.log(`callback: err->${JSON.stringify(err)}, data->${JSON.stringify(data)}`);
});
```

C
clevercong 已提交
1764
## RadioTechnology
C
clevercong 已提交
1765 1766 1767

无线接入技术。

C
clevercong 已提交
1768 1769 1770
**系统能力**:以下各项对应的系统能力均为SystemCapability.Telephony.CoreService。

| 名称                      | 值   | 说明                                                         |
Z
zengyawen 已提交
1771
| ------------------------- | ---- | ------------------------------------------------------------ |
C
clevercong 已提交
1772 1773 1774 1775 1776 1777 1778
| 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)。 |
1779
| RADIO_TECHNOLOGY_EVDO     | 7    | 无线接入技术EVDO(Evolution Data Only)。                   |
C
clevercong 已提交
1780 1781 1782 1783 1784 1785 1786 1787
| 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 已提交
1788 1789 1790

网络信号强度信息对象。

C
clevercong 已提交
1791 1792 1793 1794 1795 1796
**系统能力**:以下各项对应的系统能力均为SystemCapability.Telephony.CoreService。

| 参数名      | 类型                        | 说明               |
| ----------- | --------------------------- | ------------------ |
| signalType  | [NetworkType](#networktype) | 网络信号强度类型。 |
| signalLevel | number                      | 网络信号强度等级。 |
Z
zengyawen 已提交
1797 1798


C
clevercong 已提交
1799
## NetworkType
C
clevercong 已提交
1800 1801 1802

网络类型。

C
clevercong 已提交
1803 1804 1805
**系统能力**:以下各项对应的系统能力均为SystemCapability.Telephony.CoreService。

| 名称                 | 值   | 说明                                                         |
Z
zengyawen 已提交
1806
| -------------------- | ---- | ------------------------------------------------------------ |
C
clevercong 已提交
1807 1808 1809 1810 1811 1812 1813
| 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 已提交
1814

C
clevercong 已提交
1815
## NetworkState
C
clevercong 已提交
1816 1817 1818

网络注册状态。

C
clevercong 已提交
1819 1820 1821
**系统能力**:以下各项对应的系统能力均为SystemCapability.Telephony.CoreService。

| 名称            | 类型                  | 说明                                                         |
Y
YOUR_NAME 已提交
1822
| ----------------- | --------------------- | ------------------------------------------------------------ |
C
clevercong 已提交
1823 1824 1825 1826 1827 1828
| longOperatorName  | string                | 注册网络的长运营商名称。 |
| shortOperatorName | string                | 注册网络的短运营商名称。 |
| plmnNumeric       | string                | 注册网络的PLMN码。 |
| isRoaming         | boolean               | 是否处于漫游状态。 |
| regState          | [RegState](#regstate) | 设备的网络注册状态。 |
| cfgTech<sup>8+</sup> | [RadioTechnology](#radiotechnology) | 设备的无线接入技术。 |
Z
zengyawen 已提交
1829
| nsaState          | [NsaState](#nsastate) | 设备的NSA网络注册状态。 |
C
clevercong 已提交
1830 1831
| isCaActive        | boolean               | CA的状态。 |
| isEmergency       | boolean               | 此设备是否只允许拨打紧急呼叫。 |
Z
zengyawen 已提交
1832 1833


C
clevercong 已提交
1834
## RegState
C
clevercong 已提交
1835 1836 1837

网络注册状态。

C
clevercong 已提交
1838
**系统能力**:以下各项对应的系统能力均为SystemCapability.Telephony.CoreService。
Z
zengyawen 已提交
1839

C
clevercong 已提交
1840 1841 1842 1843 1844 1845
| 名称                          | 值   | 说明                       |
| ----------------------------- | ---- | -------------------------- |
| REG_STATE_NO_SERVICE          | 0    | 设备不能使用任何服务。     |
| REG_STATE_IN_SERVICE          | 1    | 设备可以正常使用业务。     |
| REG_STATE_EMERGENCY_CALL_ONLY | 2    | 设备只能使用紧急呼叫业务。 |
| REG_STATE_POWER_OFF           | 3    | 蜂窝无线电已关闭。         |
Z
zengyawen 已提交
1846

C
clevercong 已提交
1847 1848

## NsaState
C
clevercong 已提交
1849 1850 1851

非独立组网状态。

C
clevercong 已提交
1852 1853 1854 1855 1856 1857 1858 1859 1860 1861
**系统能力**:以下各项对应的系统能力均为SystemCapability.Telephony.CoreService。

| 名称                       | 值   | 说明                                                       |
| -------------------------- | ---- | ---------------------------------------------------------- |
| 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 已提交
1862 1863


C
clevercong 已提交
1864
## NetworkSelectionMode
C
clevercong 已提交
1865 1866 1867

选网模式。

C
clevercong 已提交
1868 1869 1870 1871 1872 1873 1874
**系统能力**:以下各项对应的系统能力均为SystemCapability.Telephony.CoreService。

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

C
clevercong 已提交
1876 1877 1878 1879 1880 1881 1882 1883
## PreferredNetworkMode<sup>8+</sup>

首选网络模式。

此接口为系统接口。

**系统能力**:以下各项对应的系统能力均为SystemCapability.Telephony.CoreService。

C
update  
clevercong 已提交
1884 1885
| 名称                                                      | 值   | 说明                                          |
| --------------------------------------------------------- | ---- | --------------------------------------------- |
C
clevercong 已提交
1886 1887 1888 1889 1890 1891 1892 1893 1894
| 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 已提交
1895
| PREFERRED_NETWORK_MODE_WCDMA_GSM_EVDO_CDMA                | 10   | 首选WCDMA GSM EVDO CDMA网络模式。             |
C
clevercong 已提交
1896 1897 1898 1899 1900 1901 1902 1903 1904 1905 1906 1907 1908 1909 1910 1911 1912 1913 1914 1915 1916 1917 1918
| 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 已提交
1919
| PREFERRED_NETWORK_MODE_MAX_VALUE                          | 99   | 首选网络模式最大值。                          |
C
clevercong 已提交
1920 1921 1922 1923 1924 1925 1926 1927 1928 1929 1930

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

小区信息。

此接口为系统接口。

**系统能力**:以下各项对应的系统能力均为SystemCapability.Telephony.CoreService。

| 名称              | 类型                                                         | 说明                                                         |
| ----------------- | ------------------------------------------------------------ | ------------------------------------------------------------ |
1931
| networkType       | [NetworkType](#networktype)                                  | 获取服务单元的网络类型。                                     |
C
clevercong 已提交
1932 1933
| isCamped          | boolean                                                      | 获取服务单元的状态。                                         |
| timeStamp         | number                                                       | 获取单元格信息时获取时间戳。                                 |
C
update  
clevercong 已提交
1934
| signalInformation | [SignalInformation](#signalinformation)                      | 信号信息。                                                   |
C
clevercong 已提交
1935
| data              | [CdmaCellInformation](#cdmacellinformation8) \| [GsmCellInformation](#gsmcellinformation8) \| [LteCellInformation](#ltecellinformation8) \| [NrCellInformation](#nrcellinformation8) \| [TdscdmaCellInformation](#tdscdmacellinformation8) | Cdma小区信息 \|Gsm小区信息\|Lte小区信息\|Nr小区信息\|Tdscdma小区信息 |
C
clevercong 已提交
1936 1937 1938

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

1939
CDMA小区信息。
C
clevercong 已提交
1940 1941 1942 1943 1944 1945 1946 1947 1948 1949 1950 1951 1952 1953 1954

此接口为系统接口。

**系统能力**:以下各项对应的系统能力均为SystemCapability.Telephony.CoreService。

| 名称      | 类型   | 说明         |
| --------- | ------ | ------------ |
| baseId    | number | 基站Id。     |
| latitude  | number | 经度。       |
| longitude | number | 纬度。       |
| nid       | number | 网络识别码。 |
| sid       | number | 系统识别码。 |

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

1955
GSM小区信息。
C
clevercong 已提交
1956 1957 1958 1959 1960 1961 1962 1963 1964 1965 1966 1967 1968 1969 1970 1971

此接口为系统接口。

**系统能力**:以下各项对应的系统能力均为SystemCapability.Telephony.CoreService。

| 名称   | 类型   | 说明                 |
| ------ | ------ | -------------------- |
| lac    | number | 位置区编号。         |
| cellId | number | 小区号。             |
| arfcn  | number | 绝对无线频率信道号。 |
| bsic   | number | 基站识别号。         |
| mcc    | string | 移动国家码。         |
| mnc    | string | 移动网号。           |

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

1972
LTE小区信息。
C
clevercong 已提交
1973 1974 1975 1976 1977 1978 1979 1980 1981 1982 1983 1984 1985 1986 1987 1988 1989 1990

此接口为系统接口。

**系统能力**:以下各项对应的系统能力均为SystemCapability.Telephony.CoreService。

| 名称          | 类型    | 说明                    |
| ------------- | ------- | ----------------------- |
| cgi           | number  | 小区全球标识。          |
| pci           | number  | 物理小区识别。          |
| tac           | number  | 跟踪区域代码。          |
| earfcn        | number  | 绝对无线频率信道号。    |
| bandwidth     | number  | 带宽。                  |
| mcc           | string  | 移动国家码。            |
| mnc           | string  | 移动网号。              |
| isSupportEndc | boolean | 是否支持新无线电_双连接 |

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

1991
NR小区信息。
C
clevercong 已提交
1992 1993 1994 1995 1996 1997 1998 1999 2000 2001 2002 2003 2004 2005 2006 2007

此接口为系统接口。

**系统能力**:以下各项对应的系统能力均为SystemCapability.Telephony.CoreService。

| 名称    | 类型   | 说明             |
| ------- | ------ | ---------------- |
| nrArfcn | number | 5G频点号。       |
| pci     | number | 物理小区识别。   |
| tac     | number | 跟踪区域代码。   |
| nci     | number | 5G网络小区标识。 |
| mcc     | string | 移动国家码。     |
| mnc     | string | 移动网号。       |

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

2008
TD-SCDMA小区信息。
C
clevercong 已提交
2009 2010 2011 2012 2013 2014 2015 2016 2017 2018 2019 2020 2021 2022 2023 2024

此接口为系统接口。

**系统能力**:以下各项对应的系统能力均为SystemCapability.Telephony.CoreService。

| 名称   | 类型   | 说明         |
| ------ | ------ | ------------ |
| lac    | number | 位置区编号。 |
| cellId | number | 小区号。     |
| cpid   | number | 小区参数Id。 |
| uarfcn | number | 绝对射频号。 |
| mcc    | string | 移动国家码。 |
| mnc    | string | 移动网号。   |

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

2025
WCDMA小区信息。
C
clevercong 已提交
2026 2027 2028 2029 2030 2031 2032 2033 2034 2035 2036 2037 2038 2039 2040 2041

此接口为系统接口。

**系统能力**:以下各项对应的系统能力均为SystemCapability.Telephony.CoreService。

| 名称   | 类型   | 说明         |
| ------ | ------ | ------------ |
| lac    | number | 位置区编号。 |
| cellId | number | 小区号。     |
| psc    | number | 主扰码。     |
| uarfcn | number | 绝对射频号。 |
| mcc    | string | 移动国家码。 |
| mnc    | string | 移动网号。   |

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

2042
NR的选择模式。
C
clevercong 已提交
2043 2044 2045 2046 2047 2048 2049

此接口为系统接口。

**系统能力**:以下各项对应的系统能力均为SystemCapability.Telephony.CoreService。

| 名称                 | 值   | 说明                               |
| -------------------- | ---- | ---------------------------------- |
2050 2051 2052 2053
| 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 已提交
2054 2055 2056 2057 2058

## NetworkSearchResult

网络搜索结果。

C
clevercong 已提交
2059 2060
此接口为系统接口。

C
clevercong 已提交
2061 2062 2063 2064 2065
**系统能力**:以下各项对应的系统能力均为SystemCapability.Telephony.CoreService。

| 名称                   | 类型                                              | 说明           |
| ---------------------- | ------------------------------------------------- | -------------- |
| isNetworkSearchSuccess | boolean                                           | 网络搜索成功。 |
2066
| networkSearchResult    | Array<[NetworkInformation](#networkinformation)\> | 网络搜索结果。 |
C
clevercong 已提交
2067 2068 2069 2070 2071 2072 2073 2074 2075 2076 2077 2078 2079

## NetworkInformation

网络信息。

此接口为系统接口。

**系统能力**:以下各项对应的系统能力均为SystemCapability.Telephony.CoreService。

| 名称            | 类型                                      | 说明           |
| --------------- | ----------------------------------------- | -------------- |
| operatorName    | string                                    | 运营商的名称。 |
| operatorNumeric | string                                    | 运营商数字。   |
2080
| state           | [NetworkInformationState](#networkinformationstate) | 网络信息状态。 |
C
clevercong 已提交
2081 2082 2083 2084 2085 2086 2087 2088 2089 2090 2091 2092 2093 2094 2095 2096 2097 2098 2099 2100 2101 2102 2103 2104 2105 2106 2107 2108
| radioTech       | string                                    | 无线电技术。   |

## NetworkInformationState

网络信息状态。

此接口为系统接口。

**系统能力**:以下各项对应的系统能力均为SystemCapability.Telephony.CoreService。

| 名称              | 值   | 说明             |
| ----------------- | ---- | ---------------- |
| NETWORK_UNKNOWN   | 0    | 网络状态未知。   |
| NETWORK_AVAILABLE | 1    | 网络可用于注册。 |
| NETWORK_CURRENT   | 2    | 已在网络中注册。 |
| NETWORK_FORBIDDEN | 3    | 网络无法注册。   |

## NetworkSelectionModeOptions

网络选择模式选项。

此接口为系统接口。

**系统能力**:以下各项对应的系统能力均为SystemCapability.Telephony.CoreService。

| 名称               | 类型                                          | 说明                                   |
| ------------------ | --------------------------------------------- | -------------------------------------- |
| slotId             | number                                        | 卡槽ID。<br/>- 0:卡槽1<br/>- 1:卡槽2 |
C
update  
clevercong 已提交
2109 2110
| selectMode         | [NetworkSelectionMode](#networkselectionmode) | 网络选择模式。                        |
| networkInformation | [NetworkInformation](#networkinformation)    | 网络信息。                            |
C
clevercong 已提交
2111 2112
| resumeSelection    | boolean                                       | 继续选择。                             |

C
clevercong 已提交
2113 2114 2115 2116 2117 2118 2119 2120 2121 2122 2123 2124 2125 2126 2127 2128 2129 2130 2131 2132 2133 2134 2135 2136 2137 2138 2139 2140 2141 2142 2143 2144 2145 2146 2147 2148 2149 2150 2151 2152 2153 2154 2155 2156 2157 2158 2159 2160 2161 2162 2163 2164 2165 2166 2167
## ImsRegState<sup>9+</sup>

IMS注册状态。

此接口为系统接口。

**系统能力**:以下各项对应的系统能力均为SystemCapability.Telephony.CoreService。

| 名称             | 值   | 说明     |
| ---------------- | ---- | -------- |
| IMS_UNREGISTERED | 0    | 未注册。 |
| IMS_REGISTERED   | 1    | 已注册。 |

## ImsRegTech<sup>9+</sup>

IMS注册技术。

此接口为系统接口。

**系统能力**:以下各项对应的系统能力均为SystemCapability.Telephony.CoreService。

| 名称                    | 值   | 说明            |
| ----------------------- | ---- | --------------- |
| REGISTRATION_TECH_NONE  | 0    | 无注册技术。    |
| REGISTRATION_TECH_LTE   | 1    | LTE注册技术。   |
| REGISTRATION_TECH_IWLAN | 2    | IWLAN注册技术。 |
| REGISTRATION_TECH_NR    | 3    | NR注册技术。    |

## ImsRegInfo<sup>9+</sup>

IMS注册信息。

此接口为系统接口。

**系统能力**:以下各项对应的系统能力均为SystemCapability.Telephony.CoreService。

| 名称        | 类型                         | 说明          |
| ----------- | ---------------------------- | ------------- |
| imsRegState | [ImsRegState](#imsregstate9) | IMS注册状态。 |
| imsRegTech  | [ImsRegTech](#imsregtech9)   | IMS注册技术。 |

## ImsServiceType<sup>9+</sup>

IMS服务类型。

此接口为系统接口。

**系统能力**:以下各项对应的系统能力均为SystemCapability.Telephony.CoreService。

| 名称       | 值   | 说明       |
| ---------- | ---- | ---------- |
| TYPE_VOICE | 0    | 语音服务。 |
| TYPE_VIDEO | 1    | 视频服务。 |
| TYPE_UT    | 2    | UT服务。   |
| TYPE_SMS   | 3    | 短讯服务。 |