无法设置 Broadcast Receiver For Internet Connectivity 如下是我的代码

cannot set Broadcast Receiver For Internet Connectivity as follow is my code

我已经在util包中使用了这个方法class,但是问题是如何调用这个方法来检查互联网连接,请帮忙。 因为我的代码运行良好,没有错误

public class NetworkChangeReceiver extends BroadcastReceiver {

private static final String LOG_TAG = "NetworkChangeReceiver";
private boolean isConnected = false;

@Override
public void onReceive(Context context, Intent intent) {
    Log.v(LOG_TAG, "Receieved notification about network status");
    isNetworkAvailable(context);
}

private boolean isNetworkAvailable(Context context) {
    ConnectivityManager connectivity = (ConnectivityManager) context.getSystemService(Context.CONNECTIVITY_SERVICE);
    if (connectivity != null) {
        NetworkInfo[] info = connectivity.getAllNetworkInfo();
        if (info != null) {
            for (int i = 0; i < info.length; i++) {
                if (info[i].getState() == NetworkInfo.State.CONNECTED) {
                    if (!isConnected) {
                        Log.v(LOG_TAG, "Now you are connected to Internet!");
                        Toast.makeText(context, "Internet availablle via Broadcast receiver", Toast.LENGTH_SHORT).show();
                        isConnected = true;
                        // do your processing here ---
                        // if you need to post any data to the server or get
                        // status
                        // update from the server
                    }
                    return true;
                }
            }
        }
    }
    Log.v(LOG_TAG, "You are not connected to Internet!");
    Toast.makeText(context, "Internet NOT availablle via Broadcast receiver", Toast.LENGTH_SHORT).show();
    isConnected = false;
    return false;
}
}

Using broadcast receiver, your app will be automatically notified when there is a change in network connection.

   boolean isConnected = NetworkChangeReceiver.isNetworkAvailable(YourACTIVITY.this);
   System.out.println("STATUS"+isConnected );