Android:所有运营商都没有CellID?

use*_*779 3 gps android cellid

当我请求Cell ID和LAC信息时,在某些设备上我无法检索它们.

我用这个代码:

TelephonyManager tm =(TelephonyManager) getSystemService(Context.TELEPHONY_SERVICE);
location = (GsmCellLocation) tm.getCellLocation();

cellID = location.getCid();

lac = location.getLac();
Run Code Online (Sandbox Code Playgroud)
  1. 有谁知道为什么有些GSM运营商不提供它们?
  2. 我需要权限吗?
  3. 还有什么可以了解retreiving CellID和LAC?

小智 18

为了找到CellId,你应该使用0xffff作为位掩码,而不是mod.

错误

new_cid = cellLocation.getCid() % 0xffff;
Run Code Online (Sandbox Code Playgroud)

new_cid = cellLocation.getCid() & 0xffff;
Run Code Online (Sandbox Code Playgroud)