Jack iPhone
Jack iPhone

Reputation: 41

Android : NeighboringCellInfo

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.

Upvotes: 0

Views: 3357

Answers (2)

Dirk Jäckel
Dirk Jäckel

Reputation: 3025

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.

Upvotes: 2

Ewoks
Ewoks

Reputation: 12435

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

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

Cheers

Upvotes: 0

Related Questions