0

我正在开发一个应用程序,其中我需要一些网络参数单元 id 和 pci。我有 5g 启用设备与 android 10。我正在尝试通过电话管理器访问单元 id 这里是代码。

List<CellInfo> allCellInfo = telephonyManager.getAllCellInfo();

for (CellInfo info : allCellInfo){ if (info instanceof CellInfoNr && info.isRegistered()){ }}

但 allCellInfo 为空。我说的是 5g SA(高通设备)。

我看过这篇文章但并没有真正的帮助。请帮忙

4

1 回答 1

0

所以搜索了很多,但没有找到任何相关的答案,最后我将我的 Android 10 5g 设备更新为 Android 11 5g 设备,它对我来说具有相同的功能。

于 2021-07-09T07:34:05.917 回答