[android-developers] Re: List of Available Wifi Devices

2012-08-10 Thread bob
startScan () returns immediately. The availability of the results is made known later by means of an asynchronous event sent on completion of the scan. So, you either need to wait 10 seconds or so after startScan or wait till you get the event that the scan has completed. IOW, you are calling

Re: [android-developers] Re: List of Available Wifi Devices

2012-08-10 Thread Meena Rengarajan
Thankyou so much . Yeah i got it very clearly On Sat, Aug 11, 2012 at 3:08 AM, bob wrote: > startScan () returns immediately. The availability of the results is made > known later by means of an asynchronous event sent on completion of the > scan. > > > So, you either need to wait 10 seconds or