我正在开发一个应用程序,其中我需要一些网络参数单元 id 和 pci。我有 5g 启用设备与 android 10。我正在尝试通过电话管理器访问单元 id 这里是代码。
List<CellInfo> allCellInfo = telephonyManager.getAllCellInfo();
for (CellInfo info : allCellInfo){ if (info instanceof CellInfoNr && info.isRegistered()){ }}
但 allCellInfo 为空。我说的是 5g SA(高通设备)。
我看过这篇文章,但并没有真正的帮助。请帮忙