Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

How i can know device is connected to Wifi or 3G, programmatically

Thanks

share|improve this question

1 Answer

up vote 8 down vote accepted

you can use WifiManager class as mentioned here

Edit: by calling getConnectionInfo() function of WifiManager class you will get WifiInfo object

WifiInfo has function getBSSID() which gives you connected AP's name

if its null that means it is not connected to any AP via Wifi ( Wifi is not enabled )

btw while looking for more info, i found this which should answer all your questions about mobile connectivity and wifi connectivity

share|improve this answer
The link shows about wifi connectivity is available or not. How i can know about 3G/2G is used to connect. Thank you, – praveenb Aug 11 '10 at 18:11
I see this word in that link "if the device is connected via mobile" what is that means? that means via 3G/2G? Please let me know Thank you – praveenb Aug 11 '10 at 18:23
not sure about how to find whether its connected to 3G/2G using sdk – N30 Aug 11 '10 at 18:41
thank you for reply – praveenb Aug 11 '10 at 19:05
thank you very much for reply – praveenb Aug 11 '10 at 19:19
show 1 more comment

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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