0

我在 3G 模式下获得邻居列表。但我无法进入 2G 模式。谁能帮我在 2g 模式下找出邻居列表?我无法在 2G 模式下获取扰码...我怎样才能获得这个值

TelephonyManager telephonyManager = (TelephonyManager) getSystemService(Context.TELEPHONY_SERVICE);
GsmCellLocation cellLocation = (GsmCellLocation) telephonyManager.getCellLocation();

int cid = cellLocation.getCid();
int lac = cellLocation.getLac();
textGsmCellLocation.setText(cellLocation.toString());
textCID.setText("gsm cell id: " + String.valueOf(cid));
textLAC.setText("gsm location area code: " + String.valueOf(lac));
4

1 回答 1

0

尝试android.telephony.TelephonyManagergetNeighboringCellInfo()

请注意,因为根据其硬件实现,它不能在所有设备中正常工作。

于 2012-09-16T13:07:55.423 回答