How to check internet connectivity in android?

后端 未结 3 1390
被撕碎了的回忆
被撕碎了的回忆 2020-12-09 23:44

friends,

i am trying to check internetconnectivity in android and using following code

final ConnectivityManager conn_manager = (ConnectivityManager)         


        
3条回答
  •  感情败类
    2020-12-10 00:23

    Use this nifty library: http://code.google.com/p/connectivity

    You can subscribe to network status notification and get a callback when network status changes. Or, you can query directly if network is available. Very simple to use.

提交回复
热议问题