search
HomeJavajavaTutorialHow can I create a broadcast receiver in Android to detect and handle both internet connectivity changes and sudden internet loss?

How can I create a broadcast receiver in Android to detect and handle both internet connectivity changes and sudden internet loss?

Managing Internet Connectivity Changes in Android: A Comprehensive Guide

In Android, detecting connectivity changes is crucial for applications that require reliable internet access. However, relying solely on connectivity changes can leave web-based apps vulnerable to sudden internet loss. This article explores a comprehensive solution to create a broadcast receiver that listens for internet connectivity changes.

Original Problem:

The provided code monitors connectivity changes but fails to detect sudden internet loss without changes in connectivity.

Solution:

To address this issue, we need to create a broadcast receiver that specifically listens for internet connectivity changes, disconnected from connectivity changes. Here's how:

Implementing the Broadcast Receiver:

Create a new class, NetworkChangeReceiver, that extends BroadcastReceiver. In this class, override the onReceive method to handle internet connectivity changes:

<code class="java">public class NetworkChangeReceiver extends BroadcastReceiver {

    @Override
    public void onReceive(final Context context, final Intent intent) {
        // Check the connectivity status
        int status = NetworkUtil.getConnectivityStatusString(context);
        Log.e("Network reciever status", String.valueOf(status));
        // Perform actions based on connectivity status
        if (status == NetworkUtil.NETWORK_STATUS_NOT_CONNECTED) {
            // Handle no internet connectivity
            new ForceExitPause(context).execute();
        } else {
            // Handle internet connectivity restored
            new ResumeForceExitPause(context).execute();
        }
    }
}</code>

Creating Utility Methods:

Include a util class, NetworkUtil, to abstract the logic for determining connectivity status:

<code class="java">public class NetworkUtil {
    // Define connectivity types and status
    public static final int TYPE_WIFI = 1;
    public static final int TYPE_MOBILE = 2;
    public static final int TYPE_NOT_CONNECTED = 0;
    public static final int NETWORK_STATUS_NOT_CONNECTED = 0;
    public static final int NETWORK_STATUS_WIFI = 1;
    public static final int NETWORK_STATUS_MOBILE = 2;

    // Get connectivity status as an integer
    public static int getConnectivityStatus(Context context) {
        // Obtain the ConnectivityManager
        ConnectivityManager cm = (ConnectivityManager) context.getSystemService(Context.CONNECTIVITY_SERVICE);

        // Get the active network
        NetworkInfo activeNetwork = cm.getActiveNetworkInfo();

        // Check if there is an active network
        if (activeNetwork != null) {
            // Check network type
            if (activeNetwork.getType() == ConnectivityManager.TYPE_WIFI) {
                return TYPE_WIFI;
            } else if (activeNetwork.getType() == ConnectivityManager.TYPE_MOBILE) {
                return TYPE_MOBILE;
            }
        }

        // No active network, return no connectivity
        return TYPE_NOT_CONNECTED;
    }

    // Get connectivity status as a string (Wifi, Mobile, Not Connected)
    public static int getConnectivityStatusString(Context context) {
        int conn = getConnectivityStatus(context);
        int status = 0;
        // Map connectivity status to string
        switch (conn) {
            case TYPE_WIFI:
                status = NETWORK_STATUS_WIFI;
                break;
            case TYPE_MOBILE:
                status = NETWORK_STATUS_MOBILE;
                break;
            case TYPE_NOT_CONNECTED:
                status = NETWORK_STATUS_NOT_CONNECTED;
                break;
        }
        return status;
    }
}</code>

Updating the Manifest File:

Add the necessary permissions and declare the broadcast receiver in your AndroidManifest.xml file:

<code class="xml"><uses-permission android:name="android.permission.ACCESS_NETWORK_STATE"></uses-permission>
<uses-permission android:name="android.permission.INTERNET"></uses-permission>

<receiver android:name="NetworkChangeReceiver" android:label="NetworkChangeReceiver">
    <intent-filter>
        <action android:name="android.net.conn.CONNECTIVITY_CHANGE"></action>
        <action android:name="android.net.wifi.WIFI_STATE_CHANGED"></action>
    </intent-filter>
</receiver></code>

With this comprehensive solution, your Android application can now monitor internet connectivity changes and handle them accordingly, ensuring a more reliable user experience.

The above is the detailed content of How can I create a broadcast receiver in Android to detect and handle both internet connectivity changes and sudden internet loss?. For more information, please follow other related articles on the PHP Chinese website!

Statement
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Top 4 JavaScript Frameworks in 2025: React, Angular, Vue, SvelteTop 4 JavaScript Frameworks in 2025: React, Angular, Vue, SvelteMar 07, 2025 pm 06:09 PM

This article analyzes the top four JavaScript frameworks (React, Angular, Vue, Svelte) in 2025, comparing their performance, scalability, and future prospects. While all remain dominant due to strong communities and ecosystems, their relative popul

Spring Boot SnakeYAML 2.0 CVE-2022-1471 Issue FixedSpring Boot SnakeYAML 2.0 CVE-2022-1471 Issue FixedMar 07, 2025 pm 05:52 PM

This article addresses the CVE-2022-1471 vulnerability in SnakeYAML, a critical flaw allowing remote code execution. It details how upgrading Spring Boot applications to SnakeYAML 1.33 or later mitigates this risk, emphasizing that dependency updat

How do I implement multi-level caching in Java applications using libraries like Caffeine or Guava Cache?How do I implement multi-level caching in Java applications using libraries like Caffeine or Guava Cache?Mar 17, 2025 pm 05:44 PM

The article discusses implementing multi-level caching in Java using Caffeine and Guava Cache to enhance application performance. It covers setup, integration, and performance benefits, along with configuration and eviction policy management best pra

Node.js 20: Key Performance Boosts and New FeaturesNode.js 20: Key Performance Boosts and New FeaturesMar 07, 2025 pm 06:12 PM

Node.js 20 significantly enhances performance via V8 engine improvements, notably faster garbage collection and I/O. New features include better WebAssembly support and refined debugging tools, boosting developer productivity and application speed.

How does Java's classloading mechanism work, including different classloaders and their delegation models?How does Java's classloading mechanism work, including different classloaders and their delegation models?Mar 17, 2025 pm 05:35 PM

Java's classloading involves loading, linking, and initializing classes using a hierarchical system with Bootstrap, Extension, and Application classloaders. The parent delegation model ensures core classes are loaded first, affecting custom class loa

Iceberg: The Future of Data Lake TablesIceberg: The Future of Data Lake TablesMar 07, 2025 pm 06:31 PM

Iceberg, an open table format for large analytical datasets, improves data lake performance and scalability. It addresses limitations of Parquet/ORC through internal metadata management, enabling efficient schema evolution, time travel, concurrent w

How to Share Data Between Steps in CucumberHow to Share Data Between Steps in CucumberMar 07, 2025 pm 05:55 PM

This article explores methods for sharing data between Cucumber steps, comparing scenario context, global variables, argument passing, and data structures. It emphasizes best practices for maintainability, including concise context use, descriptive

How can I implement functional programming techniques in Java?How can I implement functional programming techniques in Java?Mar 11, 2025 pm 05:51 PM

This article explores integrating functional programming into Java using lambda expressions, Streams API, method references, and Optional. It highlights benefits like improved code readability and maintainability through conciseness and immutability

See all articles

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

AI Hentai Generator

AI Hentai Generator

Generate AI Hentai for free.

Hot Article

Hot Tools

MantisBT

MantisBT

Mantis is an easy-to-deploy web-based defect tracking tool designed to aid in product defect tracking. It requires PHP, MySQL and a web server. Check out our demo and hosting services.

Atom editor mac version download

Atom editor mac version download

The most popular open source editor

Dreamweaver Mac version

Dreamweaver Mac version

Visual web development tools

Notepad++7.3.1

Notepad++7.3.1

Easy-to-use and free code editor

SublimeText3 English version

SublimeText3 English version

Recommended: Win version, supports code prompts!