getScanResults () function in android is used to give the list of all APs scanned. What will this function return in case no AP is found? Here is a line from my code -

   List<ScanResult> wifi_scan_new = wifi.getScanResults();

I want to check for the the no AP case. How should I do it?

link|improve this question

73% accept rate
I suggest you try it and find out. It will either be null or a List<ScanResult> where size() returns zero. Test if for null first then check it's size() if it's not null. – MisterSquonk Sep 30 '11 at 18:35
feedback

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
or
required, but never shown

Browse other questions tagged or ask your own question.