gpt4 book ai didi

android - 如何找到短小区ID?

转载 作者:行者123 更新时间:2023-11-29 16:05:15 25 4
gpt4 key购买 nike

我用过:

TelephonyManager telephonyManager = (TelephonyManager) getSystemService(Context.TELEPHONY_SERVICE);
GsmCellLocation cl = (GsmCellLocation) telephonyManager.getCellLocation();
int cid = cl.getCid();

这给出了长小区 ID。

我正在使用 OpenCellID使用小区 ID、LAC(位置区域代码)、MNC(移动网络代码)和 MCC(移动国家代码)查找我手机的纬度和经度的 API。使用长小区 ID 会给出不准确的位置,而使用短小区 ID 会给出准确的位置(几乎)。为了测试这一点,我使用这个 app 找到了我手机的短小区 ID .

但是如何使用android API 找到短信元ID?

最佳答案

“短小区 ID”似乎只是长小区 ID 的低 16 位。

所以我用了:

int cid = cl.getCid();
short cid_short = (short) cid;

关于android - 如何找到短小区ID?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/19428729/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com