How to permanently remove the volume scale from the screen Xiaomi: TVs and smartphones

The volume slider on Xiaomi’s screen is a useful feature for quick audio adjustment, but it sometimes interferes with watching movies, playing games or working with apps, especially annoying when the scale appears accidentally from touching touch buttons or remote control. In this article, we will analyze all the current ways to hide the volume indicator on Xiaomi TVs (Mi series). TV A2/A Pro, P1, Q2, S Pro) and firmware smartphones MIUI 12-14.

It's important to understand that the manufacturer doesn't routinely turn off the volume scale through standard settings. But there are workarounds, from changing system settings to using third-party utilities. We tested each method on 2023-2026 devices and only selected working solutions. If you're willing to donate 5-10 minutes to set up, this guide will help get rid of the annoying slider forever.

Why the volume scale appears on the screen Xiaomi

Volume indicator is a part of the system interface MIUI and Xiaomi TV OS, which is activated when:

  • πŸŽ›οΈ Presses of physical volume buttons on the device body
  • πŸ“± Touch touch keys (on smartphones with navigation gestures)
  • πŸ–₯️ Use of remote control (for TVs)
  • πŸ”Š Software adjustment of sound through applications

On Xiaomi TVs, the scale is displayed at the top of the screen for 3-5 seconds, and on smartphones - in the middle or top (depending on the version of MIUI). In recent updates, the manufacturer added a translucent background, which further distracts from the content. The main problem is that even when the sound is turned off, the indicator continues to appear, signaling the current level.

Technically, the volume scale is a system window (com.android.systemui) operated by AudioService, and its behavior is written in framework-res.apk and SystemUI.apk files, so it will require tampering with system files to completely delete it.

⚠️ Note: On Xiaomi TVs with firmware below TV OS 3.0 (released before 2021) Some methods may not work due to manufacturer restrictions. β†’ On TV. β†’ POS version.

Method 1: Disconnect via TV settings (without root)

The safest method for Xiaomi TVs is to use hidden developer settings. It works on models with TV OS 2.0 and later, including Mi TV A2 43"/55", P1 Series and Q2 QLED. You do not need superuser rights or third-party programs.

Instructions:

  1. Open the settings β†’ Device β†’ About the TV.
  2. Find the build number and click on it 7 times in a row (the notification "You became a developer") should appear.
  3. Go back to the main settings menu and select a new item for developers.
  4. Scroll down to the Debugging section and activate the option to Turn off volume indicators (some firmware called Hide Volume Slider).
  5. Restart the TV through Settings β†’ Reboot.

Activate Developer Mode (7 taps by build number)

Find the item "Disable Volume Indicators" in the Developer Menu

Restart the TV to apply changes

Check the absence of a scale when adjusting the sound-->

If you don't have an option on the menu, your TV model doesn't support that solution, so move on to the next one.

What to do if there is no β€œDevelopers” item?
Some Xiaomi TVs (e.g., 2019 Mi TV 4S) may not have a developer menu even after 7 taps on the build number. This is due to manufacturer restrictions. In this case, try: 1. Update your firmware to the latest version via Settings β†’ Software Update 2. Use alternative methods from this article (ADB or third-party apps) 3. Reset to factory settings (note: delete all data!) via Settings β†’ Restore and Reset

Method 2: Use of the ADB-Teams (for smartphones and TVs)

The Android Debug Bridge (ADB) method works for both Xiaomi smartphones (Redmi Note, POCO, Mi series) and TVs, and allows you to disable system notifications, including volume scale, without getting root rights. You'll need a computer with ADB drivers installed.

Step-by-step:

  1. Download Platform Tools from Google’s official website and unpack the archive.
  2. On a Xiaomi device, activate Developer Mode (similar to Method 1) and enable USB Debugging.
  3. Connect the device to the computer through USB-cable (use for TVs) OTG-adapter).
  4. Open the command line in the folder with the platform-tools and do:
adb devices

(Your device should be displayed)

adb shell settings put global volume_panel_show false

For Xiaomi TVs, use an alternative command:

adb shell settings put system volume_panel_show 0

Once you've done this, restart the device. The volume scale should disappear. If it hasn't, try the extra command:

adb shell pm disable-user --user 0 com.android.systemui/.volume.VolumePanelDialog

⚠️ Attention: On some firmware MIUI 14 shutdown through ADB It may reset after the system update, in which case repeat the procedure or use the method with Tasker (described below).

TV (Mi TV, Redmi Smart TV, etc.)

Smartphone (Redmi, POCO, Mi)

Tablet (Pad 5/6)

Other-->

Method 3: Tasker (Automation for Smartphones)

If ADB-The teams didn't help or you want to flexibly control the volume scale display, use the Tasker app.This method works on Xiaomi smartphones with a high-speed, high-speed, high-speed phone. MIUI 12-14 It doesn't require root rights, and the idea is to automatically close the system volume window as soon as it appears.

Instructions:

  1. Install Tasker from Google Play.
  2. Create a new profile (+ β†’ Event β†’ Notification Panel β†’ Volume Change).
  3. In the task add the action System β†’ Close the dialogue and select Volume Panel.
  4. Save the task and activate the profile.

For reliability, add a 100ms delay before closing the dialog:

  • πŸ•’ Action: The challenge β†’ Wait (100 milliseconds)
  • πŸ—‘οΈ Action: The system β†’ Close the dialogue

The advantage of this method is that it can be fine-tuned, for example, you can only turn off the scale in certain applications (YouTube, games) or on a schedule.

πŸ’‘

If Tasker doesn't see the volume event, try an alternative trigger: Event β†’ Availability β†’ Window Type = VolumePanel.This will work even if the standard trigger isn't activated.

Method 4: Edit system files (root only)

This method is suitable for advanced users who are ready to get root rights on their Xiaomi device, and allows you to completely remove the volume scale by editing the system. APK-On Xiaomi TVs with firmware TV OS 3.0+ This method can lead to the locking of the loader, if not careful.

You'll need:

  • πŸ“± Device with unlocked bootloader and root rights
  • πŸ’» APKTool Decompilation Program
  • πŸ“‚ Backup copy of system files

Step-by-step:

  1. Download the SystemUI.apk file from /system/priv-app/SystemUI/.
  2. Decompile it with APKTool: apktool d SystemUI.apk -o SystemUI
  3. Open the file. SystemUI/res/values/bool.xml and find a line: <bool name="config_showVolumeUI">true</bool> Replace true with false.
  4. Compile. APK back: apktool b SystemUI -o SystemUI_mod.apk
  5. Sign the file and replace the original SystemUI.apk with a modified one.
  6. Reset the device.

⚠️ Warning: Incorrect editing of system files can lead to bootloop ( looped boot). TWRP Or OrangeFox Recovery. On Xiaomi TVs, this method is recommended only to power users!

MethodRoot is required.DifficultyWorks onRisk
Developer settings❌ No.β­β­β˜†β˜†β˜†Xiaomi TVs (TV OS 2.0+)Absent.
ADB-team❌ No.β­β­β­β˜†β˜†Smartphones and televisionsReset after update
Tasker❌ No.β­β­β­β­β˜†Smartphones (MIUI 12+)Conflicts with other machines
Editing by SystemUIβœ… Yes.⭐⭐⭐⭐⭐All devices.Bootloop with an error

Method 5: Alternative launchers (for smartphones)

If you don't want to mess with the system settings, you can simply hide the volume scale with a third-party launcher. Some shells (like Nova Launcher or Lawnchair) allow you to customize system notifications, including a volume slider.

Instructions for Nova Launcher:

  1. Install Nova Launcher from Google Play.
  2. Click the empty space on the home screen β†’ Settings β†’ Notifications.
  3. Activate the option Hide volume panel (in English version).
  4. Reset the device.

Limitations of the method:

  • ❌ It doesn’t work on Xiaomi TVs.
  • ❌ The scale may appear in some system applications (e.g., Settings)
  • βœ… Easy to cancel (return the standard launcher is enough)

For maximum effect, combine this method with ADB-team or Tasker.

What to do if nothing helps

If none of the methods worked, check the following points:

  1. Update your firmware. On older versions of MIUI (below 12) or TV OS (below 2.0), some features may not be available. Check for updates in Settings β†’ Software Update.
  2. Reset. Rarely, the problem is a conflict of system parameters. Reset to factory settings (remember to backup!). Way: Settings β†’ Additional β†’ Recover and Reset.
  3. Check the remote. On Xiaomi TVs, the volume scale may appear due to the sticking buttons on the remote. Try using the device from another remote or through the Mi Remote app.
  4. If the problem has occurred after the update, report the bug through the official Xiaomi channel: 🌍 Forum: c.mi.com πŸ“§ Mail: support@xiaomi.com

If you use custom firmware (like LineageOS or Pixel Experience), the problem may be due to incorrect build. Try reflashing the device to the official version of MIUI via the Mi Flash Tool.

πŸ’‘

On Xiaomi TVs with TV OS 4.0 firmware (2026), the manufacturer added the option "Minimalist interface" in the display settings, activating this mode automatically hides the volume scale and other system notifications.

FAQ: Frequent questions

Can I remove the volume scale without a computer?
Yes, on Xiaomi smartphones, this can be done through the Tasker app (method 3) or alternative launchers (method 5). For TVs without a computer, only the method is available through the developer settings (method 1), but it does not work on all models.
Why did the volume scale reappear after the update?
The system update resets some user settings, including changes made through ADB or Tasker. You need to repeat the shutdown procedure. To prevent the problem, you can create a task in Tasker that will automatically apply the settings after the update.
Is it safe to edit SystemUI.apk?
Editing system files is always risky, especially on Xiaomi TVs where the bootloader is locked. If you are not sure about your actions, use safer methods (ADB or Tasker). On smartphones with an unlocked bootloader and backup via TWRP, the risk is minimal.
Are there any applications to hide the volume scale?
Google Play has utilities like Volume Style or Hide Volume Panel, but they require root rights and often don’t work on the latest versions of MIUI. The more reliable option is Tasker (method 3) or Nova Launcher (method 5).
How do you get the volume scale back?
To restore the slider display: For ADB: Adb shell settings put global settings volume_panel_show True For Tasker: Delete the created profile For editing SystemUI.apk: Return the original file or re-flash the device