How i can know device is connected to Wifi or 3G, programmatically
Thanks
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
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