Receptor Broadcast e conexão à Internet

Como uso o receptor de transmissão para verificar se não há conexão com a Internet?

E depois disso

1.Se houver conexão = não faça nada

2.Não há conexão = abrir nova atividade

Espero que você entenda o que estou perguntando.

Aqui está o código do meu aplicativo de visualização na web:

WebView mWebView;
    String URL = "http://url.com";
    ProgressBar loadingProgressBar,loadingTitle;


    /** Called when the activity is first created. */
    @Override
    public void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.webview);


        mWebView = (WebView) findViewById(R.id.Web);
        mWebView.setScrollBarStyle(WebView.SCROLLBARS_OUTSIDE_OVERLAY);
        mWebView.getSettings().setJavaScriptEnabled(true);
        mWebView.getSettings().setBuiltInZoomControls(true);
        mWebView.getSettings().setAllowFileAccess(true);
        mWebView.loadUrl(URL);
        mWebView.setWebViewClient(new MyWebViewClient());

        loadingProgressBar=(ProgressBar)findViewById(R.id.progressBar); 

        mWebView.setWebChromeClient(new WebChromeClient() {

        @Override
        public void onProgressChanged(WebView view, int newProgress) {
        super.onProgressChanged(view, newProgress);
        loadingProgressBar.setProgress(newProgress);
        if (newProgress == 100) {
        loadingProgressBar.setVisibility(View.GONE);
        } else{
        loadingProgressBar.setVisibility(View.VISIBLE);
        }
        }
        });
    }



    @Override
    public boolean onKeyDown(int keyCode, KeyEvent event) {
        if ((keyCode == KeyEvent.KEYCODE_BACK) && mWebView.canGoBack()) {
            mWebView.goBack();
            return true;
        }
        return super.onKeyDown(keyCode, event);
    }


        private class MyWebViewClient extends WebViewClient {


      @Override
      public boolean shouldOverrideUrlLoading(WebView view, String url) {
          if (url.endsWith(".mp3")) {
              Intent intent = new Intent(Intent.ACTION_VIEW);
              intent.setDataAndType(Uri.parse(url), "audio/*");
              view.getContext().startActivity(intent);   
              return true;
          } else if (url.endsWith(".mp4") || url.endsWith(".3gp")) {
                  Intent intent = new Intent(Intent.ACTION_VIEW); 
                  intent.setDataAndType(Uri.parse(url), "video/*");
                  view.getContext().startActivity(intent);   
                  return true;
          } else {
              return super.shouldOverrideUrlLoading(view, url);
          }
        }
      }
@Override
public boolean onCreateOptionsMenu(Menu menu) {
    MenuInflater inflater = getMenuInflater();
    inflater.inflate(R.menu.menu, menu);
    return true;
}
@Override
public boolean onOptionsItemSelected(MenuItem item) {
    switch (item.getItemId()) {
  case R.id.menu_paivita:
    mWebView.reload();
    return true;
  case R.id.menu_sulje:
    a.this.finish();
    return true;
  case R.id.menu_tietoa:
          Intent intent = new Intent(a.this, c.class);
          intent.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
          startActivity(intent);
         return true;
  case R.id.menu_palautetta:
      Intent emailIntent = new Intent(android.content.Intent.ACTION_SEND);
      String aEmailList[] = { "[email protected]" };
      emailIntent.putExtra(android.content.Intent.EXTRA_EMAIL, aEmailList);
      emailIntent.putExtra(android.content.Intent.EXTRA_SUBJECT, "Palaute Sovelluksesta");
      emailIntent.setType("plain/text");
      startActivity(Intent.createChooser(emailIntent, "Send your email in: Gmail"));
      return true;
    default:
        return false;
}
}
private BroadcastReceiver mConnReceiver = new BroadcastReceiver() {
    @Override
    public void onReceive(Context context, Intent intent) {
        boolean noConnectivity = intent.getBooleanExtra(ConnectivityManager.EXTRA_NO_CONNECTIVITY, false);
        String reason = intent.getStringExtra(ConnectivityManager.EXTRA_REASON);
                    boolean isFailover = intent.getBooleanExtra(ConnectivityManager.EXTRA_IS_FAILOVER, false);

        NetworkInfo currentNetworkInfo = (NetworkInfo) intent.getParcelableExtra(ConnectivityManager.EXTRA_NETWORK_INFO);
        NetworkInfo otherNetworkInfo = (NetworkInfo) intent.getParcelableExtra(ConnectivityManager.EXTRA_OTHER_NETWORK_INFO);

        // do application-specific task(s) based on the current network state, such
        // as enabling queuing of HTTP requests when currentNetworkInfo is connected etc.
        ConnectivityManager cm = (ConnectivityManager) getSystemService(Context.CONNECTIVITY_SERVICE);
        NetworkInfo info = cm.getActiveNetworkInfo();
        if (info != null) {
            if (!info.isConnected()) {
            }
        }
        else {
            setContentView(R.layout.connection_error);
        }
    }
};

Obrigado pela ajuda

UPDATE: o código é atualizado!

questionAnswers(2)

yourAnswerToTheQuestion