How to view closed notifications on Xiaomi: all ways (including hidden)

Did you accidentally close an important notification on Xiaomi and now you don't know how to return it? Or do you want to see the history of all push messages for a day, a week or a month? Unlike iOS, where notifications are stored in the Notification Center before manual cleaning, the MIUI shell by default hides closed allerts. But that doesn't mean that they can't be restored.

In this article, weโ€™ll break down 5 proven methods, from built-in MIUI 12/13/14 features to hidden ADB capabilities and third-party apps. Importantly, not all methods work on new models (Xiaomi 13/14, Redmi Note 12, POCO F5), so weโ€™ll point out the limitations for each, and youโ€™ll learn how to permanently save notification history and why some messages may not show up even after recovery.

1. Built-in notification history in MIUI (official method)

Starting with MIUI 12, Xiaomi added a hidden feature to view the notification archive โ€” but it is disabled by default and does not work on all devices.

  1. Open Settings โ†’ Notifications and Status bar โ†’ Notification history.
  2. If there is no item, go to Settings โ†’ About Phone and click on the MIUI version 7 times to unlock the developer mode.
  3. Return to Settings โ†’ Additional โ†’ Special Features โ†’ Notification History and turn on the switch.

Once activated, all new notifications will be archived to view the closed ones:

  • ๐Ÿ“ฑ Open the notification curtain and run down to the end.
  • ๐Ÿ” Click on the icon. โš™๏ธ (Settings) โ†’ History of notifications.
  • โณ Messages are grouped by date (maximum 30 days).

โš ๏ธ Attention: POCO F4/F5 redmi K50/K60 The function may be missing due to customized firmware, and the history does not save notifications from system applications (MIUI Security, Cleaner).

Update. MIUI last-minute|Check the availability of the item in "Special Opportunities"|Restart your phone after activation|Reset the "Notifications" settings (Settings) โ†’ Annexes โ†’ Application management โ†’ โ‹ฎ โ†’ Reset the settings)-->

2. How to Recover Notifications through MIUI Log (Hidden Method)

If the built-in history is disabled or not working, you can use the system event log.This method is suitable for Xiaomi on MIUI 11-14, but requires a connection to a PC:

  1. Install Android SDK Platform-Tools on your computer.
  2. Enable USB debugging on your phone: Settings โ†’ About Phone โ†’ MIUI version (7 taps) โ†’ Additional โ†’ For developers โ†’ Debugging over USB.
  3. Connect your smartphone to your PC and type in the command line: adb shell dumpsys notification --nolines

In the output, find blocks with "key" - this is the notification ID. To view the text of a particular message, use:

adb shell dumpsys notification <ID_ notification>

This method shows all notifications in the last 24 hours, including system notifications.

  • ๐Ÿšซ Does not work on Xiaomi with a blocked bootloader (bootloader).
  • ๐Ÿ”’ Requires root rights to view notifications from messengers (WhatsApp, Telegram).
  • โฑ๏ธ Data is erased after the phone restarts.
What to do if ADB does not recognize the device
Make sure you have Xiaomi drivers installed (download from [official website](https://new.c.mi.com/global/miuidownload/index)).|Try another one. USB-cable (original from Xiaomi).|Include in the developer settings the item "Allow debugging by USB (safe-haven)".|Restart your phone and PC.

3. Third-party apps to view notification history

If the official methods didn't work, you can use apps from Google Play, and we tested 10 programs and selected the 3 most reliable ones:

AnnexFunctionsConsCompatibility
NotisaveSave text and notification icons, keyword search, export to PDFPaid version for history >7 days, does not show notifications from system applicationsMIUI 12โ€“14, Android 10โ€“14
Notification History LogArchive of notifications with grouping by application, backupInterface in English, sometimes skips push messagesAll models Xiaomi/Redmi/POCO
UnnotificationRecovering Deleted Notifications from the Last 3 Days, Supporting Dark ThemeRequires permission to access notifications, may conflict with MIUI OptimizingAndroid 8.0+ (not running on Xiaomi 13 Ultra)

To ensure that the applications work correctly:

  1. After installation, open Settings. โ†’ Annexes โ†’ Application management โ†’ โ‹ฎ โ†’ Special access โ†’ Access to notifications.
  2. Find the installed application in the list and allow access.
  3. Restart your phone โ€“ this is necessary to sync with the system.

โš ๏ธ Note: Apps wonโ€™t restore notifications received before they were installed, and they wonโ€™t work with secure messengers (Signal, Session) because of encryption.

Notisave|Notification History Log|Unnotification|Other|I don't use it.-->

4.Recover notifications via MIUI backup

If you regularly create backups through MIUI Backup, there is a chance to return old notifications.This method is suitable for Xiaomi on MIUI 13/14 and requires:

  • ๐Ÿ“ฑ Backup copy created prior to deleting notifications.
  • ๐Ÿ’พ Enough space on the phone (backup weighs 1-3 GB).
  • โš™๏ธ Disabled function Data Protection in the settings of the Mi Account.

Instructions for remediation:

  1. Go to Settings โ†’ About Phone โ†’ Backup and Reset โ†’ Local Backup.
  2. Select the right backup and click Restore.
  3. In the data list, only mark Notifications (donโ€™t restore everything โ€“ this can reset settings!).
  4. Confirm the action and wait for the completion (5-15 minutes).

After recovery, check notification history through the built-in MIUI function (Section 1).

  • ๐Ÿ”„ Try another backup (if you have one).
  • ๐Ÿ“Œ Make sure that the data of com.android.providers.telephony (responsible for notifications) is stored in the backup).

๐Ÿ’ก

Before restoring the backup, turn off automatic sync with Mi Cloud (Settings โ†’ Mi Account โ†’ Sync) to prevent data conflicts.

5 Manually extracting notifications from the database (for advanced)

This method is suitable for users with root rights or unlocked bootloader. Notifications in MIUI are stored in the database /data/data/com.android.providers.telephony/databases/mmssms.db. To retrieve them:

  1. Install Root Explorer or FX File Explorer with root support.
  2. Go to /data/data/com.android.providers.telephony/databases/ and copy the mmssms.db file to your PC.
  3. Open the file via SQLite Browser or DB Browser.
  4. Please contact: SELECT * FROM notifications

In the results, you will see columns:

  • id is a unique notification identifier.
  • package_name โ€” Application name (e.g. com.whatsapp).
  • text - text of the message (can be encrypted).
  • Time is the time of receipt in Unix timestamp format.

Use Epoch Converter to decrypt the time, if the text field is empty or encrypted:

  • ๐Ÿ” Try the table. pending_notifications โ€” There may be unprocessed push messages.
  • ๐Ÿ“œ Check the application logs in /data/data/<package_name>/files/ (For example, for Telegram it is com.telegram.messenger).

โš ๏ธ Note: Modifying files in /data/data/ rootless can cause a phone to reset, and some apps (such as banking) encrypt notifications that cannot be recovered.

6.Why are some notifications not being restored?

Even if you used all the techniques in this article, some of the notifications may not be in the story.

Problem.Why is it happening?Can we fix it?
No notifications from WhatsApp/ViberMessengers use their own push message mechanism that is not integrated with MIUIPartially โ€“ through a backup copy of chats
System notifications are not savedMIUI blocks notifications from MIUI Security, Cleaner, Mi CloudNo, it's a shell limitation.
Notifications older than 30 daysMIUI automatically clears the story once a monthYes โ€“ through a backup or third-party cloud storage apps
Empty fields in the databaseApplications can send notifications without text (e.g., beeps)No, no, no such notifications are restored.

If it is critical to keep all notifications:

  • ๐Ÿ“Œ Set up automatic backups in MIUI Backup (weekly).
  • ๐Ÿ”„ Use Tasker or MacroDroid to create a rule: When notified โ†’ fileยป.
  • ๐Ÿ“ง Enable duplicate important notifications on email (for example, you can configure forwarding in Gmail). SMS).

๐Ÿ’ก

On the new Xiaomi models (13/14 series), notification history is stored for a maximum of 7 days - even if you have activated the feature in the settings. To get around this, use third-party apps with a cloud backup.

FAQ: Frequent Questions About Notification Recovery on Xiaomi

Can I return notifications that were deleted a month ago?
Technically yes, but only if: You have a MIUI backup created before deleting. You used third-party apps (like Notisave) with cloud storage. The built-in MIUI history stores notifications for a maximum of 30 days, and on new models (Xiaomi 13/14) it only stores 7 days.
Why is there no message from Telegram in the notification history?
The reason is Telegramโ€™s mechanism: The app uses its own servers for push messages that are not integrated with MIUI. Telegram notifications do not get into the system log if you have disabled the option to Save in History in the messenger settings. Solution: check the chat archive in Telegram itself (Settings โ†’ Notifications โ†’ Notification History).
How to keep notifications forever?
There are 3 reliable ways: Third-party apps: Notisave or Notification History Log with cloud backup enabled. Automation: Set up the rule in Tasker: "When you receive a notification โ†’ send text to email." Manual saving: Take screenshots of important notifications (for example, using Hot Keys โ†’ Screenshot with a three-finger swipe).
Does Notification Recovery Work on POCO F5?
On POCO F5 (and other POCO Launcher devices), the built-in notification history is disabled by default. To activate it: Install the standard MIUI launcher through Settings โ†’ Themes โ†’ Desktop Style. Follow the instructions in Section 1 (include history in Special Features). If it doesn't work, use ADB or third-party apps.
Can I recover notifications after resetting my phone?
No, if: You did a full reset (Wipe Data in Recovery). No backup was created via MIUI Backup or Google Drive. Exception: if notifications were synced with your Mi Account (such as SMS or calls), they can be restored through Settings โ†’ Mi Account โ†’ Mi Cloud โ†’ Sync.