论坛首页 移动开发技术论坛

android 检查网络是否连接了

浏览 4294 次
该帖已经被评为隐藏帖
作者 正文
   发表时间:2009-11-30   最后修改:2009-11-30

[下载]php java javascript 相关 api 手册的下载

 代码如下

 

/**

 * 

 * @param activity

 * @return boolean return true if the application can access the internet

 */

public static boolean hasInternet(Activity activity) {

ConnectivityManager manager = (ConnectivityManager) activity

.getSystemService(Context.CONNECTIVITY_SERVICE);

NetworkInfo info = manager.getActiveNetworkInfo();

if (info == null || !info.isConnected()) {

return false;

}

if (info.isRoaming()) {

// here is the roaming option you can change it if you want to

// disable internet while roaming, just return false

return true;

}

return true;

 

}

 

需要在AndroidManifest.xml中
增加权限:

<uses-permission android:name="android.permission.ACCESS_NETWORK_STATE"></uses-permission>

 

   发表时间:2009-12-01  
上面一个链接算是软性广告吗?
0 请登录后投票
   发表时间:2009-12-03  
差点一不小心点击了。。。。
0 请登录后投票
   发表时间:2009-12-04  
楼主有研究过怎样改变当前正在使用的APN吗?
通过程序切换!
0 请登录后投票
   发表时间:2009-12-05  
从程序看 if (info.isRoaming())  这句可能可能抛出 NPE的 
80x86 写道

 代码如下

 

/**

 * 

 * @param activity

 * @return boolean return true if the application can access the internet

 */

public static boolean hasInternet(Activity activity) {

ConnectivityManager manager = (ConnectivityManager) activity

.getSystemService(Context.CONNECTIVITY_SERVICE);

NetworkInfo info = manager.getActiveNetworkInfo();

if (info == null || !info.isConnected()) {

return false;

}

if (info.isRoaming()) {

// here is the roaming option you can change it if you want to

// disable internet while roaming, just return false

return true;

}

return true;

 

}

 

需要在AndroidManifest.xml中
增加权限:

<uses-permission android:name="android.permission.ACCESS_NETWORK_STATE"></uses-permission>

 

 

0 请登录后投票
论坛首页 移动开发技术版

跳转论坛:
Global site tag (gtag.js) - Google Analytics