获取周围基站的信息 getNeighboringCellInfo

转http://blog.csdn.net/wzsong123/article/details/6741973



public List getNeighboringCellInfo ()

Since:  API Level 3

Returns the neighboring cell information of the device.

Returns
  • List of NeighboringCellInfo or null if info unavailable.

    Requires Permission: (@link Android.Manifest.permission#ACCESS_COARSE_UPDATES}


获取当前连接的基站信息的到处都是,下面只写我获取周围基站的过程:

tm = (TelephonyManager) this
                .getSystemService(Context.TELEPHONY_SERVICE);

List list = tm.getNeighboringCellInfo();

if (!list.isEmpty()) {
            for (NeighboringCellInfo info : list) {

                int cid = info.getCid();
                // 获取邻居小区LAC,LAC:
                // 位置区域码。为了确定移动台的位置,每个GSM/PLMN的覆盖区都被划分成许多位置区,LAC则用于标识不同的位置区。
                int lac = info.getLac();
               
                // 获取邻居小区信号强度
                int ss = -131 + 2 * info.getRssi();
                
            }
 }

不出意外的话,以上就OK了。


你可能感兴趣的:(android开发)