How To: Disable Heads Up Notifications on Any Android — No Root Needed

Disable Heads Up Notifications on Any Android — No Root Needed

Android used to have a notification ticker, but those days are long gone. Now, important new messages pop up on the top half of your screen with what's known as a "heads up notification." If you're in the middle of something, these popup notifications can be pretty annoying — luckily, it's pretty easy to turn them off.

Some phones and OS versions will have a menu that lets you turn off these notifications, but it's usually only on a per-app basis, meaning you'd have to turn off dozens of toggles to finally put an end to all heads up notifications. There's also an interesting app called Heads Off that will block them for you, but it runs a background service, which can consume extra battery.

We've found that the easiest catch-all method involves sending a single ADB command that tweaks a low-level system setting. Instead of actively blocking these popup notifications or blocking them for a single app, this method just turns off all heads up notifications without any battery drain.

Requirements

Step 1: Install ADB

Honestly, this first step is the hardest part. If you've already set up ADB on your computer and on your phone, go ahead and skip to Step 2. But if you're new to ADB, I'll provide some helpful links and a brief explainer.

ADB, or Android Debug Bridge, is a set of tools that let you send commands to your phone from your computer. Many times, ADB allows you to access certain system settings that don't appear in your regular Settings app — that's the case with this simple workaround.

So to get this one going, you'll need to start by installing ADB on your computer. That process is outlined in detail at the following link, so head over there to get started:

Step 2: Open a Command Window in the Right Directory

Next, you'll need to open a command window on your computer, which is how you'll send the ADB command to block heads up notifications. The tricky part is making sure the command window is open to the right directory.

If you're using Windows, hold down the Windows button on your keyboard, then press the "R" key. From there, type "cmd" into the prompt and hit enter.

Opening the command prompt on Windows.

If you're using a Mac or a Linux machine, you'll just need to open the Terminal app. Tip for Mac users: Press command and space bar simultaneously, then type "Terminal" into Spotlight search and hit enter.

Opening the Terminal app from Spotlight search on a Mac.

With your command window open, now it's time to change directories — this is the tricky part. You'll need to run this command from the platform-tools folder within your ADB installation directory, which will vary depending on how you installed ADB.

So search your hard drive for the platform-tools folder — most built-in file browsers (like Windows Explorer) will have a search bar in the top-right corner, so just type in "platform-tools." Once you've found the folder, copy its full location, which should look something like this, depending on your operating system:

C:\Program Files (x86)\Android\android-sdk\platform-tools

Copying the platform-tools folder location on Windows.

Once you've found the full location of the platform-tools folder, type "cd" into the command prompt, then add a space. Finally, paste the full folder location into the prompt and hit enter. The end result should look like this:

cd C:\Program Files (x86)\Android\android-sdk\platform-tools

Changing directories to the platform-tools folder.

Step 3: Verify the ADB Connection

Next, plug your phone into your computer with a USB data cable. Then, to make sure things are connected properly, enter the following command in the prompt on your computer:

adb devices

Note: Linux, Mac, and Windows PowerShell users will have to add a period and a slash (./) to the beginning of any commands listed here. Example: ./adb devices

One of three things will happen next. First, if everything's working properly, you'll see a series of letters and numbers followed by the word "device" (as shown above). Second, if everything's working, but you haven't let ADB access your phone yet, you'll see a dialog box on your Android asking you to do so (pictured below) — if so, tick the box next to "Always allow," then press "OK." Finally, if nothing happens, you'll need to check your ADB installation — refer back to this guide.

Step 4: Disable Heads Up Notifications

At this point, actually disabling heads up notifications on your phone is incredibly easy. Just paste the following line into the command prompt, then hit enter.

adb shell settings put global heads_up_notifications_enabled 0

Note: Remember the "./" if you're on Mac, Linux, or Windows PowerShell.

From now on, heads up notifications are a thing of the past — alerts will no longer pop over the top portion of your screen. This goes for all apps system-wide, and it won't consume any battery since you've simply altered a deep-level system setting. You won't get the ticker back (that's gone for good), so you'll simply hear a beep and/or a vibration and see the app icon in your status bar.

Step 5: Enable Heads Up Notifications Again (Optional)

If you decide you want to enable heads up notifications again at any point in the future, it's easy. Just repeat Steps 2–4 of this guide again, but replace the command in Step 4 with this one:

adb shell settings put global heads_up_notifications_enabled 1

No battery drain, no enabling dozens of toggles in settings — just a simple ADB command to turn heads up notifications on or off. Gotta love that, right? If you ran into any troubles or would like any help with ADB, let us know in the comments below and we'll try to steer you in the right direction.

Who needs a wand? Unlock your magical powers and transform yourself from a Muggle into a Wizard or Witch just by using your Android phone. See how:

Cover image and screenshots by Dallas Thomas/Gadget Hacks

7 Comments

Doesn't work on Huawei mate 10 Pro Oreo 8.0

works on my S9+ too. instructions are crystal clear and he was right, the hardest part is to download the ADB.

Doesn't work on my Xiaomi Redmi note 5 although executed flaulesly.

When I get a phone call, I see what appears to be a heads up notification at the top of my screen asking if I want to take or decline the call. This is the ONLY popup I care about. Is it considered a heads up notification and will it also be squelched with all the others?

Edit: Ok I managed to preform adb magic and killed all the notifications and called myself from another phone. Yes, that popup is affected too. It doesn't show up at all, but there is a way to answer the phone by pulling down the notification tray and tapping the text links to answer or decline. I'm sure there are other ways to answer the phone, I just have to find them.

The benefit of losing all the other annoyances outweighs this one convenience.

Motorola Moto 7g Power
Android 9.0

Or the not tricky way...
Shift+R-Click inside the platform tools folder to open a cmd prompt from that directory.

You're welcome world.

Share Your Thoughts

  • Hot
  • Latest