How to add a page to the Xiaomi desktop: all the ways for MIUI and Android

Adding a page to Xiaomiโ€™s desktop is a simple, but not always obvious task. Users of Redmi, POCO or Mi smartphones often find that standard Android methods do not work due to the features of the MIUI shell. In this article, we will analyze all the current ways, from saving web pages from the browser to creating shortcuts for applications and even manually adding through ADB.

It is important to understand that the algorithm depends on the firmware version. For example, in MIUI 14 and later, the menu of the Mi Browser browser has changed, and in older versions (before MIUI 12), some options may not be available. We took into account all the nuances and prepared universal instructions that work on 90% of Xiaomi devices (including Redmi Note 12, POCO X5, Mi 11, etc.).

If you tried to add a page through a long click on the icon in the browser, but it didnโ€™t work out โ€“ donโ€™t worry.The article has alternative methods, including the use of third-party launchers and hidden features. MIUI. For advanced users, we have prepared a section with ADB-manually-created.

1. Save a web page through Mi Browser

The easiest way to do this is to use the built-in Mi Browser browser, which supports Add to Home Screen on all versions of MIUI starting from the 10th.

  1. Open the page in Mi Browser (if you use Chrome or another browser, see the next section).
  2. Click on the icon. โ˜ฐ (Menu) in upper right corner.
  3. Select Add to the main screen (in some versions โ€“ Create a shortcut).
  4. Confirm the action by clicking Add.

The shortcut will appear on the desktop with a thumbnail of the page, and when you click it will open in Mi Browser (even if the default browser is installed).

๐Ÿ’ก

If the "Add to the home screen" option is missing, update the Mi Browser via Google Play or the App Store. In older versions, this feature may be hidden.

Note that MIUI 14+ does not create a shortcut as a separate application, but as a quick access to a page, which means that:

  • ๐Ÿ”น It will not appear in the menu of all applications (App Drawer).
  • ๐Ÿ”น It cannot be moved to a folder with other labels.
  • ๐Ÿ”น When removing the label, the bookmark itself in the browser is saved.

2. Alternative: Chrome and other browsers

If you use Google Chrome, Firefox or Opera, the algorithm will be different. In Chrome, for example, the shortcut creation function works differently:

  1. Open the page in Chrome.
  2. Press on. โ‹ฎ (Three points) in upper right corner.
  3. Select Add to the main screen.
  4. If necessary, edit the name of the shortcut and click Add.

The main difference from Mi Browser is that the Chrome shortcut will open in PWA (Progressive Web App) mode, without an address bar, as a separate application. This is convenient for frequently used services (for example, Vkontakte, Tinkoff Bank or YouTube Music).

๐Ÿ“Š What browser do you use on Xiaomi?
Mi Browser
Google Chrome
Firefox
Opera
Other

Firefox and Opera have a similar process, but there are some nuances:

  • ๐ŸฆŠ In Firefox, a shortcut is created through a menu. โ‹ฎ โ†’ Home screen.
  • ๐ŸŽญ Opera needs to be pressed. โ˜ฐ โ†’ Add to the main screen.
  • โš ๏ธ V MIUI 12 and below shortcuts from third-party browsers may not be displayed โ€“ a firmware update is required.

Manually creating a label through "Widgets"

If the browser method doesnโ€™t work (for example, because of outdated firmware), you can create a shortcut manually through the widget menu, which is universal and works even on Xiaomi with custom firmware.

  1. Press and hold the empty space on the desktop with your finger.
  2. In the menu that appears, select Widgets.
  3. Scroll through the list to the Tools or Tagged Tools section.
  4. Find the shortcut widget for the website (or Quick Access) and drag it to the screen.
  5. Enter. URL-page address and label name.

This method is suitable for creating shortcuts not only for web pages, but also for:

  • ๐Ÿ“ฑ Hidden Android features (e.g. #4636## for test menu).
  • ๐Ÿ”ง System settings (direct access to Settings) โ†’ Battery).
  • ๐Ÿ“ Local files (for example, shortcut for Download folder).
What to do if the widget "Site shortcut" is missing?
In some firmware, this widget is hidden. To return it: 1. Install any third-party launcher (like Nova Launcher). 2. In the launcher settings, enable the option to "Show hidden widgets." 3. Return to the standard MIUI launcher - the widget should appear.

4.Use of third-party launchers

If standard methods are not satisfactory (for example, shortcuts are not saved or disappear after a reboot), the solution will be to install an alternative launcher.

  • ๐ŸŒŸ Nova Launcher โ€“ supports customization of shortcuts and folders.
  • ๐Ÿ“ฑ Microsoft Launcher โ€“ Integration with Windows and Office.
  • ๐Ÿ” Action Launcher โ€“ Quick access to widgets and settings.

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. Press and hold the empty space on the screen โ†’ Widgets.
  4. Select Nova Actions โ†’ Shortcut for the website.
  5. Enter the URL and the name.

Advantages of third-party launchers:

FunctionStandard MIUI LauncherNova Launcher
Creating shortcuts for web pagesLimited (only via browser)Any URLs, including local files
Changing label iconsNo.Yes (through icon packets)
Grouping shortcuts into foldersYes, but with limitations.Full customization
Backup of the desktopNo.Yes (export/import settings)

๐Ÿ’ก

Third-party launchers not only solve the shortcut problem, but also improve performance on weak devices (such as the Redmi 9A or POCO C31).

5. Creating a shortcut through ADB (for advanced)

If you're familiar with ADB (Android Debug Bridge), you can create a shortcut manually through the command line.

  • ๐Ÿ”ง You need to add a shortcut for the system application (for example, com.android.settings).
  • ๐Ÿ› ๏ธ Standard methods do not work due to firmware limitations.
  • ๐Ÿ“ฑ Automation is required (e.g., mass labeling).

Instructions:

  1. Enable USB Debugging in the Developer Settings (Settings โ†’ About Phone โ†’ MIUI Version โ€“ Press 7 times, then go back to Settings โ†’ Additional โ†’ For Developers).
  2. Connect your phone to your PC and execute the command: adb shell am start -a android.intent.action.CREATE_SHORTCUT \ -n com.android.launcher3/.ShortcutInstallActivity \ --es name "Name of label" \ --es uri "https://example.com"
  3. A window will appear on the phone with a suggestion to add a shortcut - confirm the action.

To create a shortcut for an application (not a web page), use the command:

adb shell am start -a android.intent.action.CREATE_SHORTCUT \


-n com.android.launcher3/.ShortcutInstallActivity \




--es name "YouTube" \




--es uri "#Intent;action=android.intent.action.MAIN;category=android.intent.category.LAUNCHER;package=com.google.android.youtube;end"

โœ… Debugging is on. USB

โœ… Installed drivers Xiaomi on PC

โœ… Downloaded and tuned ADB (For example, through Platform Tools)

โœ… Phone is connected in the mode "File transfer"-->

โš ๏ธ Attention: Misuse of the right ADB You can crash the system, don't execute commands unless you understand their purpose, like erroneous parameter setting. --es uri could cause launcher crash.

6. Problem Solving: Labels are not retained or disappear

Sometimes added shortcuts disappear after a reboot or update to MIUI. Causes and solutions:

Problem.Reason.Decision
The label disappeared after the rebootLauncher cache errorClear the cache of the MIUI Launcher app in Settings โ†’ Apps
You canโ€™t create a shortcut in Chrome.MIUI restrictions for third-party browsersUse Mi Browser or a third-party launcher
The shortcut opens in the wrong browserBrowser default settingsChange the browser by default to Settings โ†’ Applications โ†’ By default
The "Site Label" widget is not available.An outdated version of MIUIUpdate your firmware or install the Nova launcher

If the labels continue to disappear, try:

  • ๐Ÿ”„ Reset the launcher settings: Settings โ†’ Annexes โ†’ Launcher MIUI โ†’ Warehouse โ†’ Drop it.
  • ๐Ÿ“ฅ Reinstall the browser through which the shortcut was created.
  • ๐Ÿ› ๏ธ Reverse the update MIUI, If the problem has occurred after the update (see para. FAQ).

โš ๏ธ Note: On some devices (e.g. Redmi Note 10 Pro with a MIUI 13.0.6) Shortcuts from Chrome may not be saved due to conflict with Google Play services, in which case only installing a third-party launcher will help.

FAQ: Frequent questions

Can I add a shortcut to a VK page so that it opens as an app?
Open VKontakte in Chrome, click โ‹ฎ โ†’ Add to the main screen. The shortcut will open in mode. PWA (No address bar, as a standalone app. For Mi Browser, this method doesn't work -- use Chrome or Firefox.
Why did the MIUI update disappear?
This is a well-known MIUI 14+ problem. After major upgrades, the system resets the launcher cache, which causes user shortcuts to disappear. Solution: Reboot the phone. Clear the launcher cache (Settings โ†’ Applications โ†’ MIUI Launcher โ†’ Storage โ†’ Clear the cache). If the shortcuts don't come back, create them again. To avoid losing shortcuts in the future, use third-party launchers (like Nova Launcher) that support backup.
How to add a shortcut for system settings (for example, mobile network)?summary> There are two ways: Through widgets: Press and hold the empty space on your desktop โ†’ Widgets. Find the Settings widget or Shortcuts. Select the desired item (e.g., Mobile Network). ADB: The command is: adb shell am start. -a android.intent.action.CREATE_SHORTCUT \ --es name "Mobile network" \ --es uri "#Intent;action=android.settings.NETWORK_OPERATOR_SETTINGS;end URI For system settings can be found in the Android documentation.
Does this method work on POCO F5 with MIUI 14?
All of the methods described are compatible with POCO F5 (and other devices on MIUI However, note: B POCO Launcher (branded shell for the POCO) Chrome shortcuts are more stable than standard MIUI Launcher, if you use it. POCO Launcher, to create shortcuts go to Launcher Settings โ†’ Widgets โ†’ Application labels.
Can I transfer the tags to the new Xiaomi phone?
Standard MIUI means no. But there are workarounds: Third-party launchers: Nova Launcher and Action Launcher support export/import of desktop settings through file. Backup: Use applications like Swift Backup (root rights required) to save shortcuts. Manual portability: Take a picture of the shortcuts on an old phone and restore them manually on a new one. To transfer web shortcuts, you can export your browser bookmarks and recreate shortcuts on a new device.