How to turn off HD-Xiaomi Phone Mode: The Complete Guide

Have you noticed that your Xiaomi (or Redmi/POCO) has HD+ or FHD+ constantly active, which eats up the battery and heats the screen? or after the MIUI update, the resolution automatically changed to maximum, although HD (720p) is enough for energy savings? In this article, we will discuss all the working ways to turn off HD on Xiaomi smartphones – from standard settings to hidden commands for power users.

The problem is relevant for most models, from the budget Redmi Note 12 to the flagship Xiaomi 14 Ultra. Most often, users face forced HD on after firmware, resetting settings or activating power saving modes. It is important to understand that turning off HD is not always possible through the graphical interface - the manufacturer hides some options to "improve" the user experience.

Before we get to the instructions, we specify: by β€œdisabling HD”, we mean reducing the screen resolution from FHD+ (2400Γ—1080) or HD+ (1600Γ—720) to basic HD (1280Γ—720) or even qHD (960Γ—540), this is important for saving charge, reducing heat and extending the life of AMOLED-matrixes. On some models (for example, the POCO X5 Pro), this also allows you to increase battery life by 15-20%.

1. Standard method: through MIUI settings

Let’s start with the simplest method that works on most Xiaomi smartphones with a MIUI 12-14 shell. Unfortunately, not all models support manual resolution change through the GUI – it depends on the firmware version and hardware platform.

Instructions:

  1. Open the Settings β†’ Display.
  2. Scroll down to the screen resolution section (on some models, the item is called Image Quality).
  3. Choose HD (1280Γ—720) or qHD (960Γ—540) from the available options.
  4. Confirm the change and restart the phone (recommended, but not required).

If you don't have screen resolution on the menu, your model doesn't support resolution change through standard settings, so move on to the following methods.

πŸ“Š What kind of Xiaomi model do you have?
Redmi Note 10/11/12
POCO X3/X4/X5
Xiaomi 11/12/13/14
Another model

⚠️ Note: On some devices (e.g. Xiaomi) 13T or Redmi K60) choice HD instead FHD+ You might get a warning that you might be getting a poor display quality. It's okay -- just confirm the action. It's going to get less sharp, but you're going to benefit from autonomy.

2. Hidden menu of engineering settings (for advanced)

If the standard method didn't work, you can try changing the resolution through the engineering menu, which requires caution, because incorrect actions can lead to malfunctions in the display, POCO F4, Redmi Note 11 Pro+).

Steps:

  1. Open the Phone app and type the combination: ##36446337## (the code may not work on newer versions of MIUI).
  2. If the code doesn’t fit, try ##4636## β†’ Go to Phone Information β†’ Select screen resolution.
  3. In the list of available resolutions, select 720p or HD.
  4. Save the settings and restart the device.

Some firmware has locked the engineering menu, in which case only the ADB method (described below) will help.

What to do if the engineering menu is not opened?
If the ##code## combinations don’t work, it means the manufacturer has blocked access to the engineering menu in your version. MIUI. Alternatives: 1. Use of ADB-(Section 4 of this article). 2. Establish custom recovery (TWRP) And edit the build.prop file manually -- but it's risky for beginners. 3. Try third-party applications like QuickShortcutMaker to find hidden resolution settings.

3. Use of applications to change permission

If you don't want to go through the settings or use ADB, you can use third-party utilities.

  • πŸ“± Second Screen allows you to change the screen resolution without root rights (it does not work on all models.
  • πŸ› οΈ Display Changer – a more advanced utility with support DPI and refresh rates. Requires permission to debug USB.
  • πŸ”§ SetEdit β€” to edit system parameters (root required) allows you to manually write the desired resolution in configuration files.

Instructions for Second Screen:

  1. Install the application and open it.
  2. Select Custom Resolution (User Permission).
  3. Enter the values of 1280Γ—720 (or 960Γ—540 for qHD).
  4. Click Apply and confirm the change.

⚠️ Note: Apps like Second Screen may conflict with MIUI If you have a change in resolution and you have a streak or a flicker, return the standard settings and restart the phone.

βœ… Make a backup copy of the data

βœ… Charge your phone at least 50 times%

βœ… Turn off the power saving mode

βœ… Remember the current permit (in case of rollbacks)

-->

4. Change of permission through ADB (for experienced)

If previous methods have failed, the most reliable way is to use Android Debug Bridge (ADB), which requires connecting the phone to a computer and basic command line knowledge, and works on all Xiaomi models, including those that have locked the engineering menu.

Step-by-step:

  1. Download and install ADB Tools on PC.
  2. Turn on the phone Developer Mode (7 times click on the MIUI version in the About Phone settings).
  3. Activate USB Debugging in Settings β†’ Additional β†’ For developers.
  4. Connect the phone to your computer and type in the command line:
adb devices

(Your device should appear. If not, install the drivers.)

adb shell wm size 720x1280

(For HD, 720Γ—1280, for qHD, 540Γ—960.)

adb shell wm density 320

(Pixel density – you can choose from 280 to 360 for a comfortable display.)

To return the standard settings, use:

adb shell wm size reset


adb shell wm density reset

Xiaomi modelStandard permissionRecommended HDADB Team Team
Redmi Note 12 Pro+2400Γ—1080 (FHD+)1280Γ—720 (HD)adb shell wm size 720x1280
POCO X5 Pro2400Γ—1080 (FHD+)960Γ—540 (qHD)adb shell wm size 540x960
Xiaomi 13 Lite2400Γ—1080 (FHD+)1280Γ—720 (HD)adb shell wm size 720x1280
Redmi 10A1600Γ—720 (HD+)960Γ—540 (qHD)adb shell wm size 540x960

πŸ’‘

If the screen becomes blurred after the command adb shell wm size, try changing the pixel density (DPI) by the command adb shell wm density 280. The optimal value is selected experimentally in the range 240-360.

5. Disable HD via build.prop (root) editing

For root-right users, there is another way to edit the system file build.prop. This allows you to lock the resolution on a permanent basis, even after you reboot. However, the method is risky: an error in the file can lead to a bootloop.

Instructions:

  1. Install a file manager with root support (such as Root Explorer or Solid Explorer).
  2. Go to /system/build.prop and open the file to edit.
  3. Add a line to the end of the file: ro.sf.lcd_density=320 persist.sys.display_size=720x1280
  4. Save the changes, set the rights 644 (rw-r-----).
  5. Reboot the phone.

If the screen doesn’t work properly after rebooting, boot to recovery and delete the added lines.

πŸ’‘

Build.prop editing is the most reliable way to lock in a resolution, but it requires root rights and is dangerous for beginners. If you're not sure about what you're doing, use ADB or third-party apps.

6. Features for specific Xiaomi models

Some Xiaomi smartphones have unique nuances when changing resolution.

  • πŸ“± Redmi Note 11/12 Series: These devices often block resolution change through settings, but works well ADB. After applying the wm size command, an additional adb shell am broadcast command is required. -a android.intent.action.BOOT_COMPLETED correctly.
  • πŸ“± POCO F3/F4/F5: Change of permission via Settings is available here β†’ Display. β†’ Permission, but after updating to MIUI 14 The point may disappear. Second Screen will help.
  • πŸ“± Xiaomi 13/14 Flagships often block manual resolution change due to AMOLED-The only way to work is to use the screen β€” ADB root.
  • πŸ“± Redmi 10C/10A: Budget models allow you to reduce the resolution to qHD (960Γ—540) through standard settings, but the adaptive refresh rate may be disabled.

On the POCO X5 Pro and Redmi K60, the resolution may be changed to always-on display (AOD).

adb shell cmd overlay enable com.android.internal.display.cutout.emulation.corner

Possible problems and solutions

When changing the screen resolution on Xiaomi, the following difficulties may arise:

Problem.Reason.Decision
The screen has become blurryIncorrect pixel density (DPI)Use the command adb shell wm density 280 (select value from 240 to 360)
The gestures don't work.Failure in sensor settings after changing resolutionRestart your phone or return the standard resolution
Applications are not runningSome programs block work on non-standard permitsAdd the app to the exceptions or return FHD+
The processor is heating up.GPU overloaded with rendering on unoptimized resolutionSet FPS Limits through Game Turbo or Return Standard Settings

If after changing the resolution, the phone stopped responding to touches, connect it to the computer and do:

adb shell input tap 500 # Emulation of tap in the center of the screen


adb shell wm size reset # Reset permission

FAQ: Frequent questions about turning off HD on Xiaomi

Can I turn off HD on Xiaomi without a computer?
Yes, if your model supports resolution change through settings (Settings β†’ Display β†’ Screen Resolution). If not, use apps like Second Screen or Display Changer (requires USB debugging, but not necessarily a PC connection on a permanent basis).
Why does the battery run out faster after the HD shutdown?
This is paradoxical, but it happens when the GPU starts to work in unoptimized mode. For example, on Xiaomi 12T, when forced HD, scaling can be activated, which eats up additional resources. Solution: return the standard resolution or set the FPS limit through Settings β†’ Special Features β†’ Restriction of frames.
Will Netflix be able to play in HD after the resolution drops?
Streaming services (Netflix, Disney+, YouTube) determine the screen resolution of the device. If you set HD (720p), then the maximum video quality in the applications will also be limited to 720p, even if the content is available in Full HD or 4K. This is a DRM limit.
How to return the standard resolution if the screen is black?
If the screen does not respond after changing the resolution, connect the phone to the PC and perform: adb shell wm size reset adb shell wm density reset If ADB does not recognize the device, press the Power button + Volume up for 10 seconds for a forced reboot.
Why is my Redmi Note 10 not having a resolution change option?
On some MIUI firmware (especially for budget models), the manufacturer removes the ability to manually change the resolution to "simplify" the interface. In this case, only workarounds remain: ADB, engineering menu or root. Also check if the item in Settings is hidden β†’ Special features β†’ Developer settings.