Android : NeighboringCellInfo

3.3k Views Asked by At

NeighboringCellInfo() on Android API, I want to know this function return all neighbor cell? And one of result is current cell which our device connected?

Thanks so much.

2

There are 2 best solutions below

1
On

Yes.. As seen @ d.android.com ;)

Here you have even source to take a deeper look..

Cheers

4
On

Yes, it should.

But I never found a device where it did. Please report back here if you find any GSM device with any Android OS Version that does report at least one neighboring cell. Thank you!

You should be able to use the following code to get them:

TelephonyManager tm = (TelephonyManager) this.getSystemService(Context.TELEPHONY_SERVICE);
List<NeighboringCellInfo> neighbours = tm.getNeighboringCellInfo();

You need the following permission in your AndroidManidfest.xml:

<uses-permission android:name="android.permission.ACCESS_COARSE_UPDATES"/>

Since I never saw any result in the list I do not know whether the currently connected cell is included. I would guess it is not.