Have you ever caught yourself thinking that you are constantly checking the battery level, but you have to guess the exact numbers from the icon? Missing percentages on the screen of an Android smartphone is a common problem, especially after a system update or factory reset. Fortunately, in 90% of cases, the solution takes less than a minute if you know where to look.

Manufacturers have different approaches to displaying charge: Samsung and Google Pixel often hide percentages by default, Xiaomi and Realme can show they are only in the status line, and on some custom firmware the option is completely absent. In this article we will look at all possible methods - from standard settings to hidden functions and third-party applications. Important: the methods work on Android 10โ€“14, but some menu items may differ depending on the shell.

If you are not sure about your OS version, check it in Settings โ†’ About phone โ†’ Android version. For owners of devices with MIUI, One UI or ColorOS we have allocated separate sections - these shells often have unique configuration paths. And if your smartphone does not support displaying percentages out of the box, do not despair: at the end of the article you will find workarounds.

๐Ÿ“Š What smartphone do you have?
Samsung
Xiaomi/Redmi/Poco
Google Pixel
Realme/Oppo
Another brand

1. Standard method: Android settings without root

Most modern smartphones allow you to enable charge percentages through system settings. This method does not require superuser rights and works on "pure" Android (for example Pixel, Nokia) and most custom shells. Here are the universal instructions:

  1. Open Settings (gear icon in the application menu).
  2. Go to section Battery or Device care โ†’ Battery (on Samsung).
  3. Click on the three dots in the upper right corner (or Advanced).
  4. Select Battery percentage or Show charge level.
  5. Activate the switch.

If there is no such item, try an alternative way:

  • ๐Ÿ“ฑ Settings โ†’ Display โ†’ Status bar โ†’ Battery percentage (relevant for Xiaomi, POCO).
  • ๐Ÿ”ง Settings โ†’ Notifications and status bar โ†’ Charge percentage (on some versions ColorOS).
  • ๐Ÿ”„ Settings โ†’ System โ†’ Advanced settings โ†’ Status panel (found at Huawei).

Check the Android version in "About phone"

Make sure the smartphone is charged at least 20%

Close all background applications

Reboot the device if the settings are not applied-->

Important: On some devices (for example, Sony Xperia or Motorola), the option may be called differently - for example, Show the charge level in the status barIf you do not find the item you need, try using the search by. settings (magnifying glass icon at the top of the screen) and enter the query "charge percentage".

โš ๏ธ Attention: On devices with Android Go (light version for weak smartphones), the percentage display function can be disabled at the level In this case, only third-party software will help.

2. Features for Samsung smartphones (One UI)

The shell One UI from Samsung is known for its non-standard arrangement of settings. Here are the percentages. Charge can be turned on in two ways - through the battery menu or through the status bar settings. Let's consider both options:

Method 1: Through the battery settings

  1. Open Settings โ†’ Device care โ†’ Battery.
  2. Tap on the three dots in the upper right corner and select Settings.
  3. Activate the switch Show battery percentage.

Method 2: Through the status bar (works on One UI 5.0+):

  1. Go in Settings โ†’ Notifications โ†’ Advanced settings.
  2. Select Status bar.
  3. Enable the option Show battery percentage.

On older models (Galaxy S8, Note 8 and earlier), the path may be different:

  • ๐Ÿ”‹ Settings โ†’ Display โ†’ Status panel โ†’ Battery percentage.
  • โš™๏ธ Settings โ†’ Device โ†’ Battery โ†’ Settings (three dots) โ†’ Charge percentage.

On Samsung Galaxy S22/S23 and newer, the charge percentages are displayed by default only when the charger is connected. In order for them to be shown constantly, you must use method No. 2.

โš ๏ธ Attention: After updating to One UI 6.0 (Android 14) on some. models, the option may be reset. If the percentages disappear after the update, check the settings again.

3. Xiaomi, Redmi, POCO: where to look for the setting in MIUI

The shell MIUI is famous for its abundance of hidden functions, and displaying charge percentage is no exception. Depending on the firmware version, the path to setting may differ radically. Here are the current instructions for MIUI 12โ€“14:

For MIUI 14 (Android 13/14):

  1. Open Settings โ†’ Display.
  2. Scroll down and select Status Bar.
  3. Activate the switch Show battery percentage.
  4. Select display style: Inside the icon or Next to the icon.

For MIUI 12/13 (Android 11/12):

  • ๐Ÿ“ฒ Settings โ†’ Notifications and status bar โ†’ Advanced โ†’ Charge percentage batteries.
  • ๐Ÿ”„ Settings โ†’ Battery and performance โ†’ Battery settings โ†’ Charge percentage (on some models).

On older devices (Redmi Note 7, Mi 9 and earlier) may need to be turned on Advanced status bar mode in Settings โ†’ Display โ†’ Advanced settings.

Secret method for MIUI: If there is no option in the settings, try holding your finger on the battery icon in the status bar for 3-5 seconds. On some firmware this will bring up a context menu with. choosing a display style.

What to do if percentages do not appear after turning on?

If you have activated the option, but percentages are not displayed:

1. Restart your smartphone.

2. Check if the theme is hiding them (try returning to the standard theme in Settings โ†’ Theme).

3. Update the firmware to the latest version via Settings โ†’ About phone โ†’ Update system.

4. If all else fails, reset the interface settings in Settings โ†’ System โ†’ Reset settings โ†’ Reset MIUI settings (application data is not affected).

4. for advanced users

If your smartphone does not support displaying percentages at the interface level (for example, on some models Nokia or ASUS), you can forcefully activate the function via ADB (Android Debug Bridge). This method requires a connection to a computer, but does not need it. root access.

You will need:

  • ๐Ÿ–ฅ๏ธ Computer with Windows/macOS/Linux.
  • ๐Ÿ“ฑ USB cable (preferably original).
  • ๐Ÿ”ง Installed ADB drivers (download you can from the official Android website).
  • ๐Ÿ” Enabled USB debugging on your smartphone.

Step-by-step guide:

  1. Enable Mode developer:
    Settings โ†’ About phone โ†’ Build number (tap 7 times)
  2. Go back to Settings โ†’ System โ†’ For developers and activate USB debugging.
  3. Connect your smartphone to the computer and select mode File transfer.
  4. Open command line (Windows) or terminal (macOS/Linux) in the folder with platform-tools.
  5. Enter the command:
    adb shell settings put global battery_percent 1
  6. Reboot the device.

To disable interest, use the same command, replacing 1 with 0.

Possible errors and solutions:

Error Cause Solution
device unauthorized Debugging access is not confirmed Confirm the request on your smartphone when connecting
command not found ADB is not installed or not added to PATH Specify the full path to adb.exe or reinstall the tools
The percentages did not appear The firmware is blocking the change Try an alternative command: adb shell content insert --uri content://settings/system --bind name:s:status_bar_show_battery_percent --bind value:i:1
โš ๏ธ Attention: Using ADB can lead to system malfunctions if you enter incorrect commands. Do not change other parameters unless you are sure of their purpose. For devices with Android 10+ some commands may require additional permissions.

5. Third-party applications: when all else fails

If none of the above methods worked, third-party utilities will come to the rescue. They not only show the charge percentage, but also offer additional functions: discharge graphs, battery temperature, time to complete discharge. We tested 5 popular applications and selected the best:

Top 3 applications for displaying percentages:

  • ๐Ÿ”‹ Battery Percent โ€”a minimalist solution with dark theme support. Shows percentages in the status bar, even if the system hides them. Plus: does not require root, Minus: advertising in the free version.
  • ๐Ÿ“Š AccuBattery - not only displays percentages, but also analyzes the health of the battery. Suitable for: detailed statistics, percentages in the status bar only in the Pro version. Plus: Android 5.0+. Plus: detailed statistics, minus: percentages in the status bar only in the Pro version.
  • ๐Ÿ› ๏ธ Battery Widget Reborn โ€” widget with custom design. You can display percentages on the main screen. Plus: flexible settings, minus: takes up space on the screen.

How to install and configure:

  1. Download the application from Google Play (links above).
  2. Open it and provide the necessary permissions (access to battery information).
  3. In the application settings, select Display in the status bar or Widget.
  4. Customize the display style (color, font, position).
  5. For Battery Percent you may need to enable Accessibility in the settings Android.

Warning: Some applications (for example, Battery Doctorpromise to "optimize" the battery, but in reality they only consume additional charge. Avoid utilities with suspiciously broad functionality - they often contain malicious code.

๐Ÿ’ก

If you use Nova Launcher or another custom launcher, check its settings - some allow you to add charge percentages directly to the notification panel without additional applications.

6. Alternative solutions: widgets and wallpaper

If it is not important for you to see the percentages in the status bar, you can display them on the main screen using widgets or โ€œliveโ€ wallpapers. This method is suitable for devices where changing system settings is not possible.

Widgets:

  • ๐Ÿ“ฑ Long press on the home screen โ†’ Widgets โ†’ find the battery widget (for example, Battery Widget).
  • ๐ŸŽจ Adjust the size and style (most widgets support a transparent background).
  • ๐Ÿ”„ Update the widget if the percentages do not update automatically.

"Live" wallpapers:

Applications like Battery Live Wallpaper or Energy Bar display the charge level directly on the desktop. Disadvantage: constant display can drain the battery faster by 2-5%.

For owners of smart watches: If you have Mi Band, Galaxy Watch or another smartwatch, set up notifications about your phone's charge level through the accompanying application. (for example, Mi Fit or Wear OS). This will eliminate the need to check the percentages on the smartphone screen.

7. Frequent problems and their solutions

Even after successful setup, the charge percentages may vary. disappear or display incorrectly. Let's look at typical situations and ways to fix them:

Problem 1: Interest disappears after reboot

  • ๐Ÿ”„ Check if the settings are reset due to the battery optimizer. Add the application for displaying percentages to exceptions (Settings โ†’ Battery โ†’ Battery optimization).
  • ๐Ÿ“ฑ On Xiaomi disable Auto-clean RAM on Settings โ†’ Applications โ†’ Autostart.

Problem 2: Percentages are shown with a delay

  • ๐Ÿ”‹ This may be due to energy saving. Disable the mode Battery saving or add the application for displaying percentages to the exception list.
  • ๐Ÿ”„ Recalibrate the battery: completely discharge the smartphone, then charge it to 100% without interruption.

Problem 3: Random characters are displayed instead of percentages

  • ๐Ÿ“› This is a sign of a system font failure. Try changing the font to the standard one. Settings โ†’ Display โ†’ Font.
  • ๐Ÿ”„ If the problem persists, reset the interface settings (Settings โ†’ System โ†’ Reset settings โ†’ Reset interface settings).

Problem 4: Percentages are displayed only when charging

  • ๐Ÿ”Œ On some smartphones (for example, Samsung Galaxy S21) this is the default behavior. To fix, use the ADB command from section 4.
  • ๐Ÿ“ฑ Check the theme settings: some custom themes hide percentages in normal mode.
๐Ÿ’ก

If none of the methods worked, the cause may be custom firmware with removed system functions. In this case, only flashing to the official version of the software will help.

Is it possible to show charge percentages without root?

Yes, in 95% of cases this is possible without root access. Use standard settings (sections 1โ€“3), ADB commands (section 4) or third-party applications (section 5). Root may only be needed for deep modification of system files on some custom firmware.

Why are the charge percentages shown inaccurately (for example, jumps from 50%. data-i="274">Settings โ†’ Applications โ†’ Show system

This is a sign of battery wear or controller failure. Try:

  1. Recalibrate the battery (full discharge + charge to 100%).
  2. Clear application cache com.android.systemui V Settings โ†’ Applications โ†’ Show system.
  3. Check battery health in AccuBattery or AIDA64.

If the problem persists, it's time to replace the battery.

How to return the old style of displaying percentages (for example, inside battery icons)?

On most smartphones, the style is selected in the status bar settings. For example:

  • On Xiaomi: Settings โ†’ Display โ†’ Status bar โ†’ Percentage style.
  • On Samsung: the style changes automatically depending on the selected theme.

If there is no option, try the application Battery Percent โ€”it supports several styles.

Will the battery drain faster if you constantly show percentages?

No, the percentage displays itself does not in itself affect battery consumption. However, some applications for monitoring the battery (for example, widgets with animation) can consume up to 1-2% of the charge per hour. Try to use system tools or lightweight utilities like Battery Percent.

Is it possible to show the charge percentage on the locked screen?

Yes, but not on all devices. data-i="290">On

  • On Samsung: Settings โ†’ Lock screen โ†’ Widgets โ†’ Battery.
  • On Xiaomi: Settings โ†’ Lock screen โ†’ Advanced โ†’ Battery percentage.
  • Universal method: use the application Always On AMOLED (for devices with AMOLED screens).

On smartphones without Always-On Display, percentages on the locked screen are displayed only when charging is connected.