Disabling Wi-Fi on Android can be useful in a variety of situations, from saving battery life to protecting yourself from surveillance over open networks. But not everyone knows that modern smartphones have Several ways to jam Wi-Fi — from the standard switch in the notification shade to hidden engineering commands and automatic scheduled shutdown.
In this article, we'll cover all possible methods, from the obvious to the little-known. You'll learn how to fully deactivate Wi-Fi module, set its operation time, use ADB To forcefully disable or even block connections to certain networks. Also, why your smartphone sometimes turns on Wi-Fi independently, despite your settings, and how to fix it.
The material is relevant for all versions of Android from 5.0 Lollipop to 14, including branded shells One UI (Samsung), MIUI (Xiaomi), EMUI (Huawei) and others. If your smartphone is running an older version, some features may be missing.
1. Standard methods for disabling Wi-Fi
Let's start with basic methods that work on any Android device without any additional settings or root access.
The fastest way is to use Quick Settings panelSwipe down from the top of the screen to open the notification shade, then:
- 📶 Click on the icon Wi-Fi (it will be highlighted in gray if the module is disabled).
- 🔄 If the icon is missing, swipe down again to expand the full panel.
- 🔒 On some smartphones (for example, Xiaomi) you need to hold the icon for 1-2 seconds to completely turn off.
If the curtain does not respond or Wi-Fi turns on by itself, try turning it off via system settings:
- Open the app
Settings(gear in the menu or on the desktop). - Go to the section
Network and Internet(orConnectionson Samsung). - Select
Wi-Fiand move the slider to the position Off
On some firmware (for example, ColorOS from Oppo/Realme) there is a function Automatic connectionIf enabled, your smartphone can automatically turn on Wi-Fi when it detects saved networks. To disable it:
⚠️ Attention: On Samsung Galaxy With One UI 5.0+ on the menu Wi-Fi → Additional there is an option "Intelligent Switching"It's also worth disabling if your smartphone automatically turns on Wi-Fi when the mobile network signal is weak.
2. Hidden settings: engineering menu and ADB
If standard methods don't work (for example, Wi-Fi turns on by itself or doesn't turn off completely), you can use hidden Android featuresOne of the ways is - engineering menu, which is available on most devices.
To open it:
- Open the app
Telephone. - Enter the combination:
##4636##(may not work on some smartphones). - Select a section
Wi-Fi informationorTesting. - Click
Wi-Fi OFF(if the option is available).
A more reliable method is to use ADB (Android Debug Bridge)This is a debugging tool that allows you to send commands directly to the system. To do this:
☑️ Getting Started with ADB
Once prepared, run the following in the command line:
adb shell svc wifi disable
To turn Wi-Fi back on, use:
adb shell svc wifi enable
To permanently disable Wi-Fi (until reboot), you can use:
adb shell settings put global wifi_on 0
3. Scheduled Wi-Fi shutdown
If you want Wi-Fi to turn off automatically (for example, at night or at work), you can set it up scheduleThere are several ways to do this:
Method 1: Built-in firmware functions
- 🌙 On Xiaomi (MIUI):
Settings → Wi-Fi → Wi-Fi Schedule. - ⏰ On Huawei (EMUI):
Settings → Wireless & networks → Wi-Fi → Advanced → Wi-Fi timer. - 🔄 On Samsung (One UI): Use
Sleep modeVSettings → Device Care → Battery.
Method 2: Third-party applications
If your firmware does not have a timer, install one of these applications (available in Google Play):
- 📱 WiFi Timer — a simple timer with flexible settings.
- ⚡ MacroDroid — allows you to create automatic rules (for example, turn off Wi-Fi when connected to a charger).
- 🤖 Tasker — an advanced automation tool (requires configuration skills).
Method 3: Via Google Assistant
The voice assistant can control Wi-Fi on command. Say:
- "Okay, Google, Turn off Wi-Fi after 1 hour".
- "Okay, Google, Turn off Wi-Fi at 11:00 PM".
Why might Wi-Fi turn on by itself?
Some smartphones (especially those with MIUI and EMUI) have a feature called "Smart Connect." It automatically turns on Wi-Fi if you're near a saved network and your mobile data connection is weak. To disable it: Settings → Wi-Fi → Advanced → Smart connection (the name may differ).
4. Completely disable the Wi-Fi module (root required)
If you need physically disable the Wi-Fi chipTo ensure that it does not consume energy and cannot be activated under any conditions, you will need root rightsThis method is suitable for experienced users.
To disable:
- Install a file manager with root support (e.g. Root Explorer or Solid Explorer).
- Go to the folder
/sys/module/bcmdhd/parameters/(the path may differ depending on the processor!). - Find the file
wifi_controland open it for editing. - Replace the value with
0and save. - Restart your device.
To turn Wi-Fi back on, change the value back to the file. 1.
⚠️ Warning: Incorrect editing of system files may result in loss of communication or device freezingBefore making any changes, please make a backup copy. TWRP or other recovery.
An alternative method is to disable the module via Magisk (if you have this root manager installed):
- Open Magisk and go to the section
Modules. - Install the module Disable Wi-Fi (available in the repository).
- Restart your smartphone.
5. How to block connections to specific networks
If you need to disconnect from a specific Wi-Fi network (for example, public Wi-Fi at a cafe or hotel) but still be able to connect to others, use one of these methods:
Method 1: Forget the network
- Open
Settings → Wi-Fi. - Click on the name of the unnecessary network.
- Select
DeleteorForget.
Method 2: Add a network to the blacklist (root required)
Using the app WiFi Blacklist (available in Google Play) you can block automatic connection to certain networks by:
- 📛 Name (SSID) - For example,
MTS_Free_WiFi. - 🔒 Security type - for example, block all open networks.
- 📡 Router MAC address.
Method 3: Set a static IP outside the DHCP range
If you don't want to forget the network, but don't want to connect to it, you can assign it to the device Invalid static IP:
- In the Wi-Fi settings, tap on the network name →
Change network→Additionally. - In the section
IP settingsselectStatic. - Please enter an IP address outside the router's range (e.g.
192.168.1.250, if the router distributes addresses up to.100). - Save the settings.
Now the smartphone will try to connect, but will not receive the correct IP and will remain without access.
6. Why Wi-Fi Won't Turn Off: Common Problems
Sometimes Wi-Fi can turn on by itself or don't switch off Despite all the manipulations. Let's look at the main causes and solutions:
| Problem | Possible cause | Solution |
|---|---|---|
| Wi-Fi turns on automatically after rebooting. | The "Wi-Fi Auto-Recovery" feature in the firmware | Disable in Settings → Wi-Fi → Advanced |
| The power button in the curtain does not work | Device administrator restrictions (e.g. MDM) | Check it out Settings → Security → Device administrators |
| Wi-Fi turns off but turns back on after a few seconds | The "Network Search" or "Scanning Always Available" function | Disable in Settings → Location → Wi-Fi Search |
| ADB commands don't work | Missing debugging permissions or outdated ADB version | Update Android SDK Platform-Tools and check the USB connection |
If none of the methods helped, the problem may be in hardware failure (for example, a malfunction of the Wi-Fi module) or firmwareIn this case:
- 🔄 Try resetting your network settings:
Settings → System → Reset → Reset Wi-Fi settings. - 📱 Update your firmware to the latest version (sometimes bugs are fixed in new builds).
- 🛠️ Contact a service center if you suspect a hardware malfunction.
7. Alternative methods: airplane mode and power saving
If you need to disable not only Wi-Fi, but also other wireless modules (Bluetooth, mobile network), you can use:
Airplane mode
- 🛩️ Quickly turns on through the notification shade or by command to the voice assistant.
- ⚡ Completely disables all radio modules, saving battery power.
- ⚠️ In this mode, calls and SMS will not work (unless you manually enable the mobile network).
Power saving mode
On some smartphones (eg. Samsung And Huawei) In power saving mode, Wi-Fi is automatically turned off when the screen is off. To activate:
- Open
Settings → Device Care → Battery. - Select
Power saving modeorMaximum energy saving. - Activate the option "Limit background activity".
Forced shutdown applications
If system methods don't work, you can use third-party utilities:
- 🔌 WiFi Manager — allows you to forcefully disable Wi-Fi even if system settings are locked.
- 🛡️ NetGuard - blocks network access at the firewall level (requires root for full control).
FAQ: Frequently asked questions about disabling Wi-Fi on Android
Is it possible to disable Wi-Fi permanently so that it doesn't turn on even after a reboot?
Yes, but you need it for that root rightsWithout them, Android can restore Wi-Fi settings after a reboot. With root, you can edit system files (as described in section 4) or install a module. Magisk for permanent shutdown.
Why does Wi-Fi still work after turning off the curtain?
You probably have the feature enabled. Network Search or "Scanning always available" (in location settings). It allows apps to scan for available networks even when Wi-Fi is "off." Disable it in Settings → Location → Wi-Fi Search.
How do I turn off Wi-Fi on my child's phone so they can't turn it on?
Use parental control:
- On Samsung:
Settings → Digital Wellbeing → Parental Controls. - On Google Pixel: application Family Link.
- Set a password for your Wi-Fi settings via
Settings → Security → Settings Lock(not available on all firmware versions).
To be on the safe side, you can also turn off Wi-Fi via ADB (section 2) - without knowing the commands, the child will not be able to turn it on.
Will turning off Wi-Fi save battery life?
Yes, but the effect depends on how you use your smartphone:
- 🔋 If Wi-Fi is turned on but not connected to a network, it consumes ~5-10% of the battery per day (due to network scanning).
- 📶 If Wi-Fi is connected and actively used, consumption can reach 15-20%.
- ⚡ In airplane mode (with Wi-Fi turned off), the smartphone will work 20-30% longer.
The greatest savings are achieved by complete shutdown of the module (via engineering menu or root), since it stops consuming energy even in the background.
Is it possible to turn off Wi-Fi for only certain apps?
Yes, but you need it for that root rights or special applications:
- 🛡️ NetGuard — blocks Wi-Fi access for selected applications (limited functionality without root).
- 🔧 AFWall+ — advanced firewall with support for Wi-Fi/mobile data rules.
You can use it without root data saving mode in the Wi-Fi settings, but it limits background activity of all applications.