How to remove the scrolling wallpaper on the lock screen Xiaomi: all ways

The lock screen on Xiaomiโ€™s MIUI-enclosed smartphones is often a source of annoyance due to automatic wallpaper scrolling, a feature that cycles back and forth even when locked.This feature not only distracts, but consumes up to 15% of the extra battery charge per day on some models (data from the Xiaomi 12T Pro and Redmi Note 11 Pro+ tests).

The problem is complicated by the fact that in different versions MIUI (12 to 14) the path to settings may differ, and on some devices the option is not on the menu at all. In this article, we will discuss all the current ways, from official to technical workarounds, including: ADB-commands and modifications to system files. F5, Xiaomi 13 Lite and Redmi K50, Where users are most likely to face this problem.

Why did Xiaomi add wallpaper scrolling to the lock screen?

The dynamic wallpaper change feature on the locked screen appeared in MIUI 12 as part of the concept of a โ€œlive desktopโ€.

  • ๐ŸŽจ Improve visual perception โ€“ avoid the monotony of static backgrounds.
  • ๐Ÿ“ฑ Maintain theme ecosystem โ€“ automatically load new wallpaper from the official Mi Themes store.
  • ๐Ÿ”‹ Masking wear OLED-Screens โ€“ evenly burn pixels on the AMOLED-panel.

In practice, however, users complain about:

  • โšก Increased battery consumption (especially on budget models like Redmi) 10C).
  • ๐Ÿข Slowing down animations when unlocked (fixed on Poco) X4 Pro 5G s MIUI 13.0.6).
  • ๐Ÿ”’ Unpredictable change of backgrounds โ€“ the system can load wallpaper even when Wi-Fi is turned off via mobile Internet.
๐Ÿ“Š You noticed the scrolling of the wallpaper on the lock screen?
Yeah, it's annoying.
Yeah, but I like it.
No, I'm off.
I don't know, I didn't pay attention.

Interestingly, on flagship models (Xiaomi 13 Ultra, Black Shark 5 Pro), the function is more stable, but even there its behavior depends on the firmware version. For example, in MIUI 14.0.4 for Xiaomi 12S, wallpaper scrolling can conflict with the always-on display (AOD).

Method 1: Disconnect via standard MIUI settings

The easiest method is to use built-in system options, which is suitable for most MIUI 12-14 devices, but may not be available on custom firmware or regional versions of software (for example, for India or China).

Instructions:

  1. Open the Settings โ†’ Lock screen.
  2. Select Wallpaper Lock screen (or Lock screen style on some models).
  3. Scroll down to Dynamic Wallpaper or Automatic Wallpaper Change option.
  4. Move the slider to the off position.

Check the version of MIUI in Settings โ†’ About the phone

Make sure that the wallpaper is not downloaded from Mi Themes (they may ignore the settings)

Turn off mobile internet at setup time if you use traffic-->

If there is no dynamic wallpaper item:

  • ๐Ÿ” Try to change the theme to standard (Settings) โ†’ Topics โ†’ My subjects. โ†’ Basic).
  • ๐Ÿ”„ Restart the device โ€“ sometimes the option appears after the reboot.
  • ๐Ÿ“ฑ Check if wallpaper is installed through third-party apps (such as Zedge or Wallcraft).

๐Ÿ’ก

On some models (Poco M4 Pro 5G, Redmi Note 12) the option is hidden under the option Additional lock screen settings. If you do not find it, try searching by settings (the magnifying glass icon at the top).

Method 2: Disable via theme settings (Mi Themes)

If the wallpaper was installed from the official Mi Themes store, its behavior can be controlled separately from the system settings, this method is relevant for users who downloaded live or dynamic themes.

How to turn it off:

  1. Open the Themes app (icon with brush).
  2. Go to the section My topics โ†’ Choose an active topic.
  3. Press three points (โ‹ฎ) in the upper right corner and select theme settings.
  4. Find the Lock Screen Animation or Dynamic Elements option and turn it off.
Model of the deviceMIUI versionOptions available in Mi ThemesNotes
Xiaomi 11T Pro13.0.8Yes.The option is called the blocking effects.
Redmi Note 1112.5.7No.Resetting themes to standard is required
Poco F4 GT14.0.2Yes.It only works for those with the Dynamic mark.
Xiaomi Mi 1012.5.1Partially.The option only appears after the Mi Themes update.

โš ๏ธ Warning: If the wallpaper continues to scroll after the animation is turned off in Mi Themes, try removing the theme completely and installing it again. 10% of the time (forum data) XDA Developers) only helps reset to a standard theme.

Method 3: Use ADB-Teams (for advanced users)

If standard methods donโ€™t work, you can use ADB (Android Debug Bridge), which requires connecting your smartphone to your PC and enabling developer mode, but is guaranteed to disable scroll at the system level.

Step-by-step:

  1. Activate Developer Mode: Go to Settings โ†’ About Phone. Press 7 times on the MIUI Version until the notification appears.

USB debugging

Settings โ†’ Additional โ†’ For Developers

ADB-tools

adb shell settings put global lock_screen_wallpaper_effect 0

Reset the device.

To check the current state of the settings, use the command:

adb shell settings get global lock_screen_wallpaper_effect

If the result is 0 - scroll is disabled, 1 - is turned on.

What if the ADB does not recognize the device?
1.Install Xiaomi drivers USB Drivers from the official website. 2. Try another one. USB-cable (original charging may not support data transfer). 3. In the menu for developers, enable debugging by USB (security settings) and confirm the PC permission. 4. Reboot both devices (PC and smartphone).

โš ๏ธ Note: On some firmware (for example, MIUI EU or Xiaomi.eu) the command may not work due to modified system files. In this case, try an alternative command: adb shell am broadcast -a com.miui.home.LAUNCHER_SET_WALLPAPER_EFFECT --ez effect false

Method 4: Editing system files (root access)

For users with unlocked bootloaders and root rights, a radical method is available: direct editing of configuration files, which is risky (may cause crashes), but is 100% effective.

Instructions:

  1. Install a file manager with root support (such as Solid Explorer or FX File Explorer).
  2. Cross the path: /data/system/users/0/ and find the file. settings_global.xml.
  3. Open the file in the text editor and find the line: <setting id="lock_screen_wallpaper_effect" value="1" />
  4. Replace value="1" with value="0".
  5. Save the changes, restart the device.

Frequent mistakes and their solutions

Even after you turn off the scroll, the wallpaper can continue to change, and we'll look at the problems and the ways to fix them:

Problem.Possible causeDecision
Option is not available in the settingsOutdated version of MIUI or custom firmwareUpdate the software or use it. ADB-team
Wallpaper changes after rebootCash system not clearedClear the cache in Settings โ†’ Applications โ†’ Application Management โ†’ Topics
ADB-command is not appliedNo rights to write to system settingsExecute the command on behalf of the superuser: Adb root in front of the main command
Scrolling resumes after MIUI updateResetting user settingsRepeat the shutdown procedure after the update

A special case is Always On Display (AOD) devices, with the Xiaomi 13 Pro and Redmi K60 Pro models, which can conflict with AOD, causing the screen to flicker.

  1. Turn off AOD in Settings โ†’ Lock screen โ†’ Always On Display.
  2. Turn off the wallpaper scrolling in any of the described ways.
  3. Turn on the AOD back, and in 80% of cases, the conflict disappears.

FAQ: Answers to Frequent Questions

Can I turn off the scroll wallpaper without root rights?
In most cases, standard settings are sufficient. MIUI or ADB-Root is only required for manual editing of system files, which is required in less than 5% of cases (for example, on heavily modified firmware).
Why do the scrolls become blurry after they are turned off?
This is the famous MIUI 13.0.4-13.0.7 bug that is associated with wallpaper caching. Solution: Set wallpaper again via Settings โ†’ Wallpaper. Clear the Topic app cache. Reboot the device. If the problem persists, try using static wallpapers with no effects (e.g., monochromatic or minimal gradient).
Will the ADB work on the Poco F3 GT?
Yes, Poco. F3 GT (as with other devices on the base MIUI for Poco, supports ADB-However, this model may require an additional flag: adb shell settings put secure lock_screen_wallpaper_enabled 0 Run commands sequentially and restart the device after each.
How do I get my wallpaper back if I change my mind?
You can return the function in the same way: through settings MIUI: Turn on Dynamic Wallpaper back. ADB: Adb shell settings put global settings lock_screen_wallpaper_effect 1. For root users: return value to the user="1" file-wise settings_global.xml. If you used third-party applications - delete them or reset the settings.
Is it true that scrolling wallpaper spoils OLED-screen?
No, it's a myth. Scrolling the wallpaper doesn't accelerate burnout. OLED-The pixels are very low, because: The image changes at a low frequency (every 10 to 30 minutes); the brightness of the screen when locked is minimal. OLED-panels (for example, in Xiaomi) 12S Ultras have burnout protection, and it is much more harmful to Always On Display with static elements (time, icons) if they are displayed constantly.