Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 8651683
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 12, 20262026-06-12T14:07:52+00:00 2026-06-12T14:07:52+00:00

I need some way to detect when the network connection has been lost. So

  • 0

I need some way to detect when the network connection has been lost.
So a switch between mobile and wifi doesn’t really matter it’s just to detect at runtime when the connection has been lost.

I now have found some code which works fine for me.

public class ConnectivityReceiver extends BroadcastReceiver {

  @Override
  public void onReceive(Context context, Intent intent) {
      Log.d(ConnectivityReceiver.class.getSimpleName(), "action: "
              + intent.getAction());
  }

}

I want to check inside the onReceive() method wheter or not a connection is still available or not.

The thing is, that I want to show a message to the user, if it has been lost. So what’s the best way of passing back to my Activity, that the connection has been lost?

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-12T14:07:53+00:00Added an answer on June 12, 2026 at 2:07 pm

    If you want to track network connection state only when activity is on screen you can place your ConnectivityReceiver as inner nested class in Activity. In this case you should register it in onResume method and unregister it in onPause. It will look like this:

    public class MyActivity extends Activity {
        private class ConnectivityReceiver extends BroadcastReceiver {
            @Override
            public void onReceive(Context context, Intent intent) {
                Log.d(ConnectivityReceiver.class.getSimpleName(), "action: "
                    + intent.getAction());
            }
        }
    
        private final BroadcastReceiver receiver = new ConnectivityReceiver();
    
        @Override
        protected void onPause() {
            super.onPause();
            unregisterReceiver(receiver);
        }
    
        @Override
        protected void onResume() {
            super.onResume();
            IntentFilter filter = new IntentFilter(ConnectivityManager.CONNECTIVITY_ACTION);
            registerReceiver(receiver, filter);
        }
    }
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I need to find a way to detect when a device has been locked,
I need some way of capturing the text between square brackets. So for example,
So, I need some way to implement an undirected network ( I think this
I need some way to detect if site from some URL is framebreaker or
What's the most appropriate way to detect if a socket has been dropped or
I need some way to monitor a desktop application and restart it if it
I'm using freemarker to generate a freemarker template. But I need some way to
I need some effective way to escape all special characters in string.For example, my
I need to find some way of displaying a drop-down menu that depending on
I need some feedback on what is the best way to do what I

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.