gpt4 book ai didi

java - NeighboringCellInfo、CID 和 LAC 的空问题

转载 作者:塔克拉玛干 更新时间:2023-11-03 00:54:47 24 4
gpt4 key购买 nike

有一段时间我一直在尝试获取附近基站的 CellID 和 LAC。不幸的是我没能做到。第一个选项是使用:

GsmCellLocation xXx = new GsmCellLocation();  
CID = xXx.getCid();
LAC = xXx.getLac();
Toast output = Toast.makeText(getApplicationContext(), "Base station LAC is "+LAC+"\n"
+"Base station CID is " +CID, Toast.LENGTH_SHORT);
output.show();

但在这种情况下,我收到 -1 值(据我所知,这意味着它不是 GSM,但当我检查 isGSM 时,它显示“true”)。我发现的另一种上网方式(我更新了一下)

public void GetID(){  
List<NeighboringCellInfo> neighCell = null;
TelephonyManager telManager = ( TelephonyManager )getSystemService(Context.TELEPHONY_SERVICE);
neighCell = telManager.getNeighboringCellInfo();
for (int i = 0; i < neighCell.size(); i++) {
try {
NeighboringCellInfo thisCell = neighCell.get(i);
int thisNeighCID = thisCell.getCid();
int thisNeighRSSI = thisCell.getRssi();
log(" "+thisNeighCID+" - "+thisNeighRSSI);
} catch (NumberFormatException e) {
e.printStackTrace();
NeighboringCellInfo thisCell = neighCell.get(i);
log(neighCell.toString());
}
}
}

但在这种情况下,应用程序会在我按下执行按钮后立即崩溃。 Eclipse 没有显示任何错误。可能有人知道如何解决我的问题?

Logcat says: 10-05 22:53:27.923: ERROR/dalvikvm(231): Unable to open stack trace file '/data/anr/traces.txt': Permission denied

使用的权限:

<uses-permission android:name="android.permission.READ_PHONE_STATE" />
<uses-permission android:name="android.permission.CHANGE_NETWORK_STATE" />
<uses-permission android:name="android.permission.ACCESS_COARSE_LOCATION" />
<uses-permission android:name="android.permission.ACCESS_FINE_LOCATION" />
<uses-permission android:name="android.permission.SEND_SMS"></uses-permission>
<uses-permission android:name="android.permission.RECEIVE_SMS"></uses-permission>
<uses-permission android:name="android.permission.ACCESS_COARSE_UPDATES" />

可能是我忘了包括的问题:

TelephonyManager telManager = ( TelephonyManager )getSystemService(Context.TELEPHONY_SERVICE);

更新。我包括上面的行,崩溃消失了,但现在按下按钮后没有任何反应。更新了源代码。

最佳答案

您是否已确认您在 list 文件中设置了正确的权限?

TelephonyManager 需要一些权限,具体取决于您使用的 API。对于大多数 API,您需要 READ_PHONE_STATE,此外 getNeighboringCellInfo 的文档中提到了 ACCESS_COARSE_UPDATES,但是我认为这可能是一个文档错误,您实际上需要 ACCESS_COARSE_LOCATION,它被记录为“允许应用程序访问粗略(例如,Cell-ID、WiFi)位置”

关于java - NeighboringCellInfo、CID 和 LAC 的空问题,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/3868223/

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