Go to my github
摘要: /** * 检测网络是否可用 * * @return */ public boolean isNetworkConnected() { ConnectivityManager cm = (ConnectivityManager) getSystemService(Context.CONNECTIVITY_SERVICE); NetworkInfo ni = cm.getActiveNetwork... 阅读全文
posted @ 2014-09-01 16:10 峡谷少爷 阅读(335) 评论(0) 推荐(0) 编辑
摘要: android 在线升级借助开源中国App源码分析如下: 1: checkAppUpdate 检查是或需要升级 // 网络连接判断 if (appContext.isNetworkConnected()) { // 检查新版本 if (appContext.isCheckUp()) { UpdateManager.getUpdateManager().checkAppUpdate(this, f... 阅读全文
posted @ 2014-09-01 16:06 峡谷少爷 阅读(3924) 评论(0) 推荐(0) 编辑