The volume slider on the Xiaomi, Redmi or POCO screen can be annoying β especially when it appears at the most inopportune moment: while playing, watching a video or screenshot. Unlike system notifications that are hidden by the swipe, this interface element does not have a standard βdo not showβ button and returns with every change in volume. The reason lies in the architecture of the MIUI shell: Xiaomi developers integrated visual sound control directly into the system UI so that users can quickly adjust settings without opening additional menus.
But not everyone appreciated this "convenience." If you're looking for a way to remove the volume slider from the Xiaomi screen, this article will help. We'll look at all the working methods, from basic settings in the phone's menu to editing system files via ADB. It's important to understand that some solutions will require superuser rights or PC connectivity, so pre-prepared the device. Also note: after the MIUI update, the settings may reset β they will have to be re-apply.
1. Method for lazy: disable via "Sound settings"
The easiest method is to use the built-in MIUI options.It won't remove the slider completely, but will make it less intrusive.It's suitable for most models on MIUI 12/13/14, including Xiaomi 12/13/14, Redmi Note 11/12 and POCO F4/X5.
Open Settings β Sound and vibration. Scroll down to Volume Slider (some firmwares call volume control) and you'll find two key parameters here:
- π Hide the slider when changing the volume with the buttons β turns off the pop-up window, but the sound is still regulated.
- π± Show the slider only when you touch the screen β the slider will only appear if you touch the volume icon in the status bar.
The POCO F5 and the new Redmi models may not have a direct switch, so try the alternative: Settings β Special Features β System Settings β Turn off pop-ups. This item hides all pop-ups, including the slider, but can also affect other notifications (such as low battery power).
β οΈ Attention: On some firmware (MIUI Global for the European market, the Hide the Slider option may not be available, due to Xiaomi's policy of unifying the interface.
2. edit system settings via ADB (without root)
If the standard settings don't work, you'll have to tamper with system settings. It requires a PC connection and an ADB driver installed, but it doesn't need super-user rights. It's good for all Android 10+ devices.
First, activate the developer mode:
- Go to Settings. β The phone.
- Click 7 times on the MIUI version (you will be notified "You became a developer").
- Return to the main settings menu, open Additional β for developers.
- Turn on USB debugging and confirm the permission.
Now connect your phone to your PC and execute commands in the terminal (Windows: Command Prompt; Mac/Linux: Terminal):
adb shell settings put global volume_panel_show 0This command turns off the volume bar display. To get it back, use:
adb shell settings put global volume_panel_show 1Install ADB drivers on PC (download from Google website)
Enable debugging over USB on your phone
Connect your phone to the original cable
Allow access to data on the phone screen-->
β οΈ Note: On some models (Xiaomi 13 Ultra, Redmi) K60 Pro) this command may not work due to the manufacturer's system settings being blocked, in which case Magisk or custom recovery will be required (TWRP).
3. Use of third-party applications (without root)
If ADB seems complicated, try specialized utilities that work through special permissions that Android gives you to manage system windows.
- π± Volume Styles - allows you to customize the appearance of the slider or disable it completely. Requires permission "Overlaid on top of other applications".
- π§ System UI Tuner hides interface elements, including the volume bar. MIUI 12-14, But it may conflict with some topics.
- ποΈ MacroDroid creates a rule that automatically closes the slider when it appears.
For installation:
- Download APK from the official website (e.g. XDA Developers).
- Allow installation from unknown sources in Settings β Applications β Special Access.
- Launch the application and follow the setup instructions.
Example of Volume Styles:
| Parameter | Meaning | The effect |
|---|---|---|
| Hide volume panel | Included. | The slider is not shown when pressing the buttons |
| Transparent background | 100% | The panel becomes invisible (but remains active) |
| Auto-hide delay | 0 ms | The slider disappears instantly |
π‘
Before using third-party apps, back up system settings through Settings β Additional β Backup. Some utilities can reset the theme or fonts.
4. Manual editing of system files (root required)
For users with unlocked bootloader and root rights, a radical method is available - editing the systemui.apk file. This will remove the slider at the system interface level, but requires caution: incorrect changes can lead to a bootloop ( looped boot).
Instructions:
- Install Root Explorer or Mixplorer with superuser rights.
- Go to /system/priv-app/SystemUI/SystemUI.apk.
- Copy the file to SD-map (backup copy!).
- Open SystemUI.apk in the APK Editor Pro editor.
- Find the file. res/values/bool.xml and change the line: <bool name="config_volumePanelVisible">false</bool>
- Save the changes, restart the phone.
If you have any errors after the reboot (for example, the notification bar is missing), restore the original SystemUI.apk from the backup. On some firmware (MIUI EU), this method may conflict with Magisk modules, so disable all modifications before editing.
What if the phone does not boot after editing SystemUI.apk?
5. Alternative solutions: gestures and buttons
If you can't remove the slider, you can change the way you control the volume so that it's less frequent. Here are some life hacks:
- π΅ Use gestures: In Settings β Special facilities β Gestures set the swipe across the screen to adjust the sound (for example, swipe with two fingers on the left edge).
- π Reassign buttons: Apps like Button Mapper allow you to assign other actions to physical volume buttons (such as rewinding a track).
- π² Desktop widget: Add the Google Sound Picker's Volume widget - it replaces the standard slider.
On the POCO F4 GT and Black Shark gaming smartphones, there is an option: Settings β Game Mode β Sound settings. Here you can turn off all pop-up elements during play, including the volume slider.
6. Frequent mistakes and how to avoid them
When you try to remove a slider, users face typical problems. Here's how to solve them:
| Problem. | Reason. | Decision |
|---|---|---|
| The ADB team is not working. | Outdated version of ADB or no rights | Update Platform Tools and Repeat Adb Devices to Check Connection |
| The slider returns after the reboot | Resetting system settings | Use Tasker to automatically apply ADB commands when you start |
| Applications do not get root access | Magisk incorrectly installed | Reinstall Magisk via TWRP with the option "Preserve Force Encryption" |
Another common mistake is using informal firmware: On custom ROMs (like LineageOS or Pixel Experience), standard MIUI methods donβt work, in which case, look for settings in the firmware menu itself (usually Settings β Display β Volume panel).
π‘
If none of the methods worked, check the MIUI version: on beta firmware (e.g. MIUI 14.0.23.4.10.DEV), some features may be blocked before the official release.