
Are you fed up with those pesky toast notifications cluttering your Android home screen? You’re not alone! In this guide, we’ll explore precisely how to eliminate them permanently, allowing for a much cleaner and distraction-free digital experience.
Understanding Toast Notifications on Android
Toast notifications are brief pop-up messages that emerge at the bottom of your screen, delivering quick updates such as “Message sent”or “Download complete.”They are designed to act like toast popping up from a toaster—quick and unobtrusive.

Unlike push notifications, which stay in your notification shade until dismissed manually, toast notifications are meant to be transient. They automatically vanish after a few seconds, helping to maintain a clean workspace. However, many users find frequent messages like “Screenshot saved”or “Clipboard copied”distracting. Fortunately, it is possible to silence these notifications for a more focused experience.
How to Disable Toast Notifications via ADB
If you’ve searched through your device settings and come up empty-handed regarding toast notifications, you’re not alone. There is no direct setting to disable these notifications in Android’s native options. Although the Google Play Store offers various notification management apps, none effectively tackle toast notifications—and some could even pose security risks.
The reliable way to manage toast notifications is through Android Debug Bridge (ADB), a command-line utility that lets you communicate with your device from a computer and tweak hidden settings.
To begin, you’ll need to have ADB set up on your computer. Once it’s ready, connect your Android device via USB and launch a terminal or command prompt. To verify your connection, enter:
adb devices
If your device ID appears, you’re good to go. If not, check your device’s USB debugging settings.

Next, you’ll need to find the package name of the app responsible for the toast notifications you wish to turn off. To list all installed apps, you can run:
adb shell pm list packages
You should see a list of apps on your device:

If you prefer, you can search for a specific app using the following command (be sure to substitute “keyword” with the actual app name):
adb shell pm list packages | grep keyword
Once you’ve pinpointed the app, you can disable its toast notifications with this command:
adb shell appops set app_package_name TOAST_WINDOW deny
And just like that, you won’t see any more toast notifications from that particular app!

Repeat this process for any other apps that send disruptive toast notifications; however, do note that unfortunately, there is no one-command solution for all apps.
If you later decide that you want to re-enable toast notifications for any app, you can easily revert your changes with this command:
adb shell appops set app_package_name TOAST_WINDOW allow
Exploring ADB can vastly improve your Android experience. With countless functions at your fingertips, mastering the basics opens up an array of customization options that go well beyond disabling notifications—no root access required! Dive into ADB and see just how much control you can gain over your device.
All images and screenshots by David Morelo.
Frequently Asked Questions
1. Can I disable all toast notifications at once?
Unfortunately, there is no way to disable toast notifications for all apps simultaneously. You will need to individually disable them for each app using ADB commands.
2. Does using ADB void my warranty?
No, using ADB does not void your warranty. It is an official tool provided by Android for debugging and development, although tampering with system files may cause issues.
3. Is it safe to use ADB on my Android device?
Yes, using ADB is safe as long as you follow the correct procedures and execute trusted commands. Be cautious when applying commands that alter system files or settings, as they can lead to unintended consequences.
Leave a Reply