简体   繁体   English

如何获取LTE网络的LAC和小区ID

[英]How to get LAC and Cell id for LTE Network

i am using GsmCellLocation to get LAC and cell id for 3G network with below code : 我正在使用GsmCellLocation使用以下代码获取3G网络的LAC和单元ID:
mCid = gmsCellLocation.getCid() & 0xffff; mCid = gmsCellLocation.getCid()&0xffff;
mLac = gmsCellLocation.getLac(); mLac = gmsCellLocation.getLac();
and is there any library or formula how to get/calculate the correct LAC and cell id for LTE network (4G) ? 是否有任何库或公式如何为LTE网络(4G)获取/计算正确的LAC和小区ID? Thanks. 谢谢。

I hope this might help you : 希望对您有帮助:

public class MobileInfoRecognizer {

    public String getCellInfo(CellInfo cellInfo) {
            String additional_info;
            if (cellInfo instanceof CellInfoGsm) {
                CellInfoGsm cellInfoGsm = (CellInfoGsm) cellInfo;
                CellIdentityGsm cellIdentityGsm = cellInfoGsm.getCellIdentity();
                additional_info = "cell identity " + cellIdentityGsm.getCid() + "\n"
                        + "Mobile country code " + cellIdentityGsm.getMcc() + "\n"
                        + "Mobile network code " + cellIdentityGsm.getMnc() + "\n"
                        + "local area " + cellIdentityGsm.getLac() + "\n";
            } else if (cellInfo instanceof CellInfoLte) {
                CellInfoLte cellInfoLte = (CellInfoLte) cellInfo;
                CellIdentityLte cellIdentityLte = cellInfoLte.getCellIdentity();
                additional_info = "cell identity " + cellIdentityLte.getCid() + "\n"
                        + "Mobile country code " + cellIdentityLte.getMcc() + "\n"
                        + "Mobile network code " + cellIdentityLte.getMnc() + "\n"
                        + "physical cell " + cellIdentityLte.getPci() + "\n"
                        + "Tracking area code " + cellIdentityLte.getTac() + "\n";
            } else if (cellInfo instanceof CellInfoWcdma){
                CellInfoWcdma cellInfoWcdma = (CellInfoWcdma) cellInfo;
                CellIdentityWcdma cellIdentityWcdma = cellInfoWcdma.getCellIdentity();
                additional_info = "cell identity " + cellIdentityWcdma.getCid() + "\n"
                        + "Mobile country code " + cellIdentityWcdma.getMcc() + "\n"
                        + "Mobile network code " + cellIdentityWcdma.getMnc() + "\n"
                        + "local area " + cellIdentityWcdma.getLac() + "\n";
            }
            return additional_info;
    }
}
TelephonyManager telephonyManager = (TelephonyManager) context.getSystemService(Context.TELEPHONY_SERVICE);
List<CellInfo> cellInfoList = telephonyManager.getAllCellInfo();
for (int i = 0; i < cellInfoList.size(); i++) {
    if (cellInfoList.get(i) instanceof CellInfoLte) {
        CellInfoLte cellInfoLte = (CellInfoLte) cellInfoList.get(i);
        mCid = cellInfoLte.getCellIdentity().getCi();
        mLac = cellInfoLte.getCellIdentity().getTac();
    }
}

Note the method name, it is getCi for LTE. 注意方法名称,它是LTE的getCi Also, getTac for LTE instead of getLac . 此外, getTac为LTE,而不是getLac See this answer for more. 有关更多信息,请参见此答案。

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM