概述
Android在NR情况下获取5G的rsrp,rsrq和ssnr,pci和ci值。
TelephonyManager tm = (TelephonyManager) getApplicationContext().getSystemService(Context.TELEPHONY_SERVICE);
List<CellInfo> allCellInfo = tm.getAllCellInfo();
if (allCellInfo != null && allCellInfo.size() > 0) { for (int i = 0; i < allCellInfo.size(); i++) { CellInfo info = allCellInfo.get(i); if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.Q) { //5G if (info instanceof CellInfoNr) { CellIdentityNr nr = (CellIdentityNr) ((CellInfoNr) info).getCellIdentity(); int pci = nr.getPci(); long ci = nr.getNci(); CellSignalStrengthNr nrStrength = (CellSignalStrengthNr) ((CellInfoNr) info).getCellSignalStrengt now_rsrp = "-" + nrStrength.getSsRsrp() + ""; String s = ((CellInfoNr)CellInfoNr info).toString(); } } } }
最后
以上就是友好薯片为你收集整理的Android获取5G信息的全部内容,希望文章能够帮你解决Android获取5G信息所遇到的程序开发问题。
如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。
本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
发表评论 取消回复