Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
388 views
in Technique[技术] by (71.8m points)

android - How to know device is connected to Wifi or 3G, programatically

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

Thanks

See Question&Answers more detail:os

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Answer

0 votes
by (71.8m points)

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


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

...