¡@

Home 

2014/10/16 ¤W¤È 08:20:14

android Programming Glossary: networkstatus

How to handle WiFi to Mobile network switch programatically?

http://stackoverflow.com/questions/7205720/how-to-handle-wifi-to-mobile-network-switch-programatically

to get switched to mobile network automatically and vice versa. My approach is as follows which is not working String networkStatus disconnected int netType 0 try ConnectivityManager connectivityManager ConnectivityManager getSystemService Context.CONNECTIVITY_SERVICE.. netType networkInfo.getType Log.d Log connetion is available else Log.d Log connetion is not available return networkStatus if networkInfo.isAvailable Old one if networkInfo.isAvailable networkInfo.isConnected New change added here if netType.. netType ConnectivityManager.TYPE_MOBILE catch Exception e Log.d Log checkNetworkConnection e.toString return networkStatus Already I have read many posts over hear still not getting idea. Can anyone give me any idea or url where I can get same..