How to hide the application on the Xiaomi desktop: all ways for MIUI

Xiaomiโ€™s MIUI-based smartphones offer users flexible interface settings, but itโ€™s not always obvious how to hide unnecessary apps from the desktop. You may be hampered by the standard Mi Browser, which canโ€™t be removed, or you want to take games out of your sight so you donโ€™t get distracted. Unlike iOS or pure Android, where hiding icons is implemented through folders or launcher settings, in MIUI, this process has its own nuances.

In this article, we will discuss 5 working ways to hide applications on Xiaomi, from standard shell features to using third-party tools, and pay special attention to the differences between versions of MIUI 14/15 and older builds (for example, MIUI 12), where some of the features may not be available, and learn how to return hidden applications back and what to do if the icon is lost after the system update.

Why you canโ€™t just remove unnecessary apps on Xiaomi

Many users are faced with the fact that some pre-installed applications (such as Mi Video, Mi Music or GetApps) can not be removed by standard means, this is due to Xiaomi's policy: the company blocks the uninstallation of system services to ensure the stability of the shell. However, even those programs that can be removed are not always worth erasing - some of them are integrated into the system and can affect:

  • ๐Ÿ”„ Software updates โ€“ for example, System Update or Security.
  • ๐Ÿ“ฑ The work of gestures - launcher MIUI Launcher is responsible for managing the desktop.
  • ๐Ÿ”’ Security โ€“ apps like Mi Cloud or Find Device are linked to a Xiaomi account.

Instead of removing it, it's better to use cover-up.

  • โœ… Free up space on the desktop without losing functionality.
  • โœ… Avoid system failures due to removal of critical components.
  • โœ… Quickly return the application if you need it suddenly.
๐Ÿ“Š What version? MIUI You're using it?
MIUI 15
MIUI 14
MIUI 12/13
Old version (up to MIUI 12)
I don't know.

Method 1: Hiding through the application menu (for MIUI 14/15)

The easiest method is to use the built-in hide feature in the app menu. It works on most modern Xiaomi devices (e.g. Redmi Note 12, POCO X5, Xiaomi 13T) with a MIUI 14 or 15 shell.

  1. Open the application menu (swipe up the desktop).
  2. Find the app icon you want to hide and hold it for 1-2 seconds.
  3. In the context menu that appears, select Hide app (or Hide app in English firmware).
  4. Confirm the action in the dialog window.

After that, the icon will disappear from the desktop and from the app menu, to return it back:

  1. Open Settings โ†’ Applications โ†’ Application Management.
  2. Go to Hidden (or Hidden Apps) tab.
  3. Find the right app and click on the eye icon (or Show).

โ˜‘๏ธ Preparation before concealment

Done: 0 / 3

Limitation: This method does not work for some system applications (e.g. Settings or Phone) and some firmware (e.g. global versions for Europe) may not have Hide the application.

๐Ÿ’ก

If the menu doesn't have the Hide option, try updating MIUI Launcher via GetApps or Google Play. Sometimes the feature appears after the update.

Method 2: Using folders for visual concealment

If your version of MIUI doesn't have a cover feature, you can use the standard technique of moving unwanted icons to a folder and hiding them on the second screen, which is suitable for all versions of the shell, including MIUI 12 and older models (Redmi 9A, POCO M3, etc.).

  1. Press the app icon and drag it to another icon (e.g. Camera or Gallery).
  2. You automatically create a folder. Call it neutral, like Tools or Reserve.
  3. Drag all unnecessary applications into the folder.
  4. Press the folder and move it to the second (or third) screen of the desktop.

For additional concealment:

  • ๐Ÿ“ Install a transparent icon for the folder (through third-party launchers like Nova Launcher).
  • ๐Ÿ” Turn off folder name prompts in the launcher settings (Settings) โ†’ Desktop โ†’ Screen settings).
  • ๐Ÿ”’ Use folder locking apps (such as AppLock) to avoid accidentally opening it.
How to return a hidden folder if it is missing?
If the folder disappeared after the update MIUI, Try: 1. Reboot your phone. 2. Check the second/third desktop screen (swipe left). 3. Restore the launcher settings via Settings โ†’ Annexes โ†’ Application management โ†’ MIUI Launcher โ†’ Warehouse โ†’ Clear the data (โš ๏ธ This will reset all the settings of the desktop!).

The downside is that the folder will still be on the screen, just less visible, and when you reset the launcher settings, all the icons will return to their places.

Method 3: Disable applications through settings (for system)

Some system applications (e.g. Mi Browser, Mi Music, Cleaner) can neither be removed nor hidden by standard methods, but they can be disabled, which removes the icons from the desktop and stops background activity.

  1. Go to Settings โ†’ Applications โ†’ Application Management.
  2. Find the app you want in the list (use the search at the top).
  3. Click on it and select Disable (or Disable).
  4. Confirm the action in the dialog window.

After the shutdown:

  • โœ… The icon will disappear from the desktop and application menu.
  • โœ… The application will stop using resources (battery, Internet).
  • โš ๏ธ Some system features may not work properly (for example, disabling Mi Browser can break link opening from other applications).
AnnexCan I turn it off?Effects of consequences
Mi Browserโœ… Yes.No links will be opened by default.
Mi Musicโœ… Yes.The built-in player will stop working
Cleanerโœ… Yes.Disappears the option of cleaning garbage in the settings
MIUI LauncherโŒ No.Resetting the desktop to factory settings
SettingsโŒ No.It is impossible to turn off without root

Important: Disabling system applications may cause failures when updating MIUI. Before that, it is recommended to back up through Settings โ†’ Additional โ†’ Backup and Reset.

Method 4: Hiding through ADB (for power users)

If standard methods don't work, you can hide applications using ADB (Android Debug Bridge), which is suitable for all versions of MIUI, but requires a computer connection and basic command line knowledge.

  1. Turn on USB debugging on your phone: Settings โ†’ About Phone โ†’ MIUI Version (click 7 times until the message โ€œYouโ€™re a developerโ€) Settings โ†’ Additional โ†’ Developers โ†’ Debugging on USB (enable)
  2. Connect your phone to your PC through USB-cable and select File Transfer Mode.
  3. Download ADB Tools and unpack the archive.
  4. Open the command line (Win + R โ†’ cmd) and go to the folder with adb: cd C:\platform-tools
  5. Enter the command to check the connection: adb devices (should appear serial number of your device).
  6. Hide the application with the command: adb shell pm hide com.mi.browser (replace com.mi.browser with the package of the desired application).

To find the application package, use the command:

adb shell pm list packages | grep "mi"

or the App Inspector app installed on the phone.

To return the application back, use:

adb shell pm uninstall -k --user 0 com.mi.browser

(where com.mi.browser is the application package).

โš ๏ธ Attention: misuse ADB Do not turn off critical services (e.g. com.android.systemui or com.miui.home) or your phone may stop turning on.

๐Ÿ’ก

ADB-The commands only work until the first reboot of the phone, so to make the coverup permanent, you need to repeat the command after each turn on or use Tasker to automate the device.

Method 5: Third-party launchers (Nova Launcher, Apex Launcher)

If the built-in methods are not satisfied, you can install a third-party launcher that offers advanced settings for hiding icons.

  • ๐ŸŒŸ Nova Launcher โ€“ supports app hiding, gestures, adaptive icons.
  • ๐Ÿ”„ Apex Launcher โ€“ Lightweight Launcher with the function โ€œHidden applications".
  • ๐Ÿ“ฑ Microsoft Launcher โ€“ Windows integration, hiding through the menu.

Instructions for Nova Launcher:

  1. Install a launcher from Google Play.
  2. Assign it to the default launcher (at the first start, an offer will appear).
  3. Select the free space on the desktop โ†’ Settings.
  4. Go to App Settings โ†’ Hide Apps.
  5. Check the boxes for the apps you want to hide.

Advantages of third-party launchers:

  • โœ… The cover-up works regardless of the version. MIUI.
  • โœ… You can even hide system applications (for example, Settings or Phone).
  • โœ… Additional features: changing icons, gestures, desktop backup.

Disadvantages:

  • โš ๏ธ Some features (such as Always On Display) may not work properly.
  • โš ๏ธ The launcher consumes additional RAM.

What to do if the hidden application is missing after the MIUI update

After updating the shell (for example, from MIUI 14 to MIUI 15), hidden applications can reappear on the desktop.

  1. Repeat the cover-up in the same way you used it before.
  2. If you have used ADB, repeat the commands.
  3. For third-party launchers (Nova Launcher), check the concealment settings โ€“ they are sometimes reset.
  4. If the app doesnโ€™t return, try: Settings โ†’ Apps โ†’ App management โ†’ Hidden โ†’ Show

If none of these methods work, maybe the new version of MIUI has changed the logic of the cover-up.

  • ๐Ÿ” Check out the official Xiaomi forum for changes.
  • ๐Ÿ“ฅ Install beta version MIUI Launcher through GetApps โ€“ sometimes new features appear there earlier.
  • ๐Ÿ”„ Make a reset of the launcher settings: Settings โ†’ Annexes โ†’ Application management โ†’ MIUI Launcher โ†’ Warehouse โ†’ Clear the data (โš ๏ธ This will remove all desktop settings!).

FAQ: Frequent questions about hiding apps on Xiaomi

Can I hide system applications like "Settings" or "Phone"?
Standard means MIUI โ€” However, this is possible through: Third-party launchers (e.g. Nova Launcher). ADB-commands (but this can cause system failures). Root right (requires unlocking the bootloader). โš ๏ธ Hiding critical apps (such as com.android.phone) can make your phone inoperable!
Why is the app still visible in search after hiding?
Hiding feature in MIUI removes the icon only from the desktop and application menu. To prevent the application from showing up in the search: Use ADB to completely disable: adb shell pm disable-user --user 0 com.mi.browser Install a third-party launcher with support for hiding from search (for example, Nova Launcher + Sesame Shortcuts plugin).
How to hide applications on Xiaomi without root?
All of the methods in this article (except the ADB section for system applications) work without root. The most reliable ones are: Hiding through the application menu (for MIUI 14/15); Using folders on the desktop; disabling applications in settings; Third-party launchers (Nova Launcher, Apex Launcher); Root is only required to remove system applications or deep modification of MIUI.
Do hidden applications take up space in memory?
Yes, hidden applications still take up space in the device's memory, because they're not deleted, they're only hidden from the display: ๐Ÿ—‘๏ธ Remove the app cache through Settings โ†’ Annexes โ†’ Warehouse โ†’ Clear the cache. ๐Ÿ”„ Turn off the app (if possible) โ€“ this will stop background activity. ๐Ÿ“‰ Use the settings. โ†’ Memory. โ†’ Cleaning to remove unnecessary files. If the application is system and does not delete, you can try to roll it back to the factory version through the ADB: adb shell pm uninstall -k --user 0 com.mi.browser (this wonโ€™t delete it completely, but will reset the settings and free up some of the memory).
How to hide apps on POCO or Black Shark?
Devices POCO Black Shark is working on the base. MIUI (or its modifications, like POCO Launcher), so all the methods described are applicable to them: ๐Ÿ“ฑ Nana POCO It can stand by default POCO Launcher, where the concealment is implemented through a long click on the icon โ†’ Hide. ๐ŸŽฎ Black Shark sometimes lacks the hide feature in the app menu โ€“ use it ADB third-party launchers. ๐Ÿ”„ To return hidden applications to POCO Go to Settings. โ†’ Annexes โ†’ Application management โ†’ Hidden.