zoukankan      html  css  js  c++  java
  • android中 检查网络连接状态的变化,无网络时跳转到设置界面

    1:在AndroidManifest.xml中加一个声明

    <receiver android:name="NetCheckReceiver">
        <intent-filter>
               <action android:name="android.net.conn.CONNECTIVITY_CHANGE" />
        </intent-filter>
    </receiver>


    NetCheckReceive.java文件如下

    import android.content.BroadcastReceiver;
    import android.content.Context;
    import android.content.Intent;
    import android.net.ConnectivityManager;

    public class NetCheckReceiver extends BroadcastReceiver{

        //android 中网络变化时所发的Intent的名字
        private static final String netACTION="android.net.conn.CONNECTIVITY_CHANGE";
        @Override
        public void onReceive(Context context, Intent intent) {

            if(intent.getAction().equals(netACTION)){
        //Intent中ConnectivityManager.EXTRA_NO_CONNECTIVITY这个关键字表示着当前是否连接上了网络
        //true 代表网络断开   false 代表网络没有断开
                if(intent.getBooleanExtra(ConnectivityManager.EXTRA_NO_CONNECTIVITY, false)){
                    aActivity.stopFlag = true;
                }else{
                    aActivity.stopFlag = false;
                }
            }
        }
    }
    aActivity.stopFlag 是一个static布尔值  可以出现在程序需要判断网络情况的地方。
    2 . 顺便加一个不需要broadcastReceiver就可以查看网络的例子。
    这个方法可以放在需要检查网络通讯情况的地方。返回值为true代表网络畅通。
     private boolean checkNetwork() {
            ConnectivityManager conn = (ConnectivityManager) getSystemService(Context.CONNECTIVITY_SERVICE);
            NetworkInfo net = conn.getActiveNetworkInfo();
            if (net != null && net.isConnected()) {
                return true;
            }
            return false;
        }
    以下的这个判断可以使用户在失去网络链接的情况下,自动跳转到设置无线网界面。
            if (!checkNetwork()) {
                Toast.makeText(this, R.string.lose_network, Toast.LENGTH_LONG).show();
                Intent intent = new Intent("android.settings.WIRELESS_SETTINGS");
                startActivity(intent);
                return;
            }
  • 相关阅读:
    cocos2dx源码分析之二:引擎的内存管理
    cocos2dx源码分析之一:大体运行流程
    对语言、层次和虚拟机的简单理解
    cocos2dx lua中异步加载网络图片,可用于显示微信头像
    对于c语言存储分配程序(malloc函数)实现的理解
    内存对齐的理解
    C和C++中#define的使用方法
    Unix系统中对于文件权限信息的本质理解
    npm 安装相关环境及测试
    Win7 之 NodeJS 安装
  • 原文地址:https://www.cnblogs.com/Free-Thinker/p/3314569.html
Copyright © 2011-2022 走看看