I'm struggling a little trying to get neighbour cells info (for the current cell info, everything works fine):

mTelephMgr=(TelephonyManager) getSystemService(Context.TELEPHONY_SERVICE);
neighbours=mTelephMgr.getNeighboringCellInfo();

I've tried with 2G/3G networks, with Galaxy S (2.2.1) & Nexus S (2.3.1), and two different carriers but I always get an empty list for neighbours. The networks are GSM based (Spain).

I've been googling for a while, and whereas some people are reporting the same issue, other seem to have the function working perfectly.

Any suggestions?

Many thanks in advance.

link|improve this question
2  
Found the issue... looks like getNeighboringCellInfo() isn't working on samsung devices... I tried it on a Nexus One and it worked. – kabracity Apr 4 '11 at 13:21
feedback

1 Answer

This is not a phone brand issue, the reason is that using a 3G connection you can't get any neighboring cell info (returns an empty list). You need to switch to 2G to get it.

link|improve this answer
2  
Are you sure? It works like a charm on not Samsung phones (Desire HD,Nexus One) on both modes (2G/3G); but it's not working on Galaxy S, even when I switch to 2G. – kabracity Apr 29 '11 at 8:07
feedback

protected by Community Apr 12 at 12:23

This question is protected to prevent "thanks!", "me too!", or spam answers by new users. To answer it, you must have earned at least 10 reputation on this site.

Not the answer you're looking for? Browse other questions tagged or ask your own question.