Search code examples
androidandroid-wifi

Android 3G Connection


When i am using wifi network all is working fine ,,but when i turn off all network(Not Airplance mode) and turn on 3G HotSpot then my application is not even detecting connection.So web service shwoing timeout errors.

ConnectivityManager cm = (ConnectivityManager)getSystemService
(Context.CONNECTIVITY_SERVICE);;
boolean 3GCon=cm.getNetworkInfo(ConnectivityManager.TYPE_MOBILE).isConnected()

This returning always false


Solution

  • Why not try using isAvailable() instead of isConnected()?