Deleting a phone number from contacts on a smartphone Honor is an unpleasant situation, but not hopeless. Unlike the physical loss of a SIM card, where you can only restore the number through the operator, here you have several options: from restoring from a cloud backup to using specialized applications. The main thing is to act quickly before the data is overwritten by new entries.

Smartphones Honor based on Android 10โ€“14 (including models Honor 50/60/70/90/X6/X7/X8/X9) store contacts in several places: local memory of the device, account Google, account Huawei ID (for older models) or Honor ID. If the number was deleted accidentally, the chances of recovery are up to 80% if the correct actions are taken. But if the contact is erased due to a factory reset or system damage, more radical measures will be required.

In this article we will look at all the current methods, including hidden functions Honorthat are rarely mentioned in standard instructions. For example, few people know that on some firmware Magic UI there is a built-in basket for contacts - the same as for photos. You will also learn how to bypass operator restrictions if the number was linked to a lost SIM card.

๐Ÿ“Š Where do you store contacts on Honor?
Only on the phone
I sync with Google
I use Huawei/Honor ID
Other

1. Checking the contacts basket (hidden function of Magic UI)

Starting from Magic UI 4.0 (and higher), Honor added to the application Contact a hidden basket where deleted numbers go. This function works similarly to the trash can in the gallery, but is not enabled on all firmware by default.

To check it:

  1. Open the application Contact.
  2. Tap on the three dots (โ‹ฎ) in the upper right corner.
  3. Select Manage contacts โ†’ Trash.
  4. If the function is active, you will see a list of deleted contacts for the last 30 days.

Recovery takes 1 click: highlight the desired number and click Restore. Please note that the recycle bin is cleared automatically after a month, as well as when manually clearing the application cache. Contact.

๐Ÿ’ก

If the "Trash" item is not in the menu, try updating the application Contact via AppGallery or Google Play. On some models Honor X6/X7 this function appears only after updating.

2. Restoring from a Google or Honor ID backup

If synchronization with the cloud was enabled, you can return the number for 5 minutes. Smartphones Honor support two types of backups:

  • ๐Ÿ”„ Google Contacts - synchronized automatically if you are logged into your account Google.
  • ๐Ÿ“ฑ Honor ID/Huawei ID โ€” used on older models (until 2022) or in regions where services Google are limited.

To restore contacts from Google:

  1. Go to Settings โ†’ Accounts โ†’ Google โ†’ Account synchronization.
  2. Make sure that the switch opposite Contact is turned on.
  3. Open contacts.google.com on your PC or in your phone browser.
  4. Select from the menu on the left Trash โ€” deleted contacts are stored there up to 30 days.

For Honor ID:

  1. Open Settings โ†’ Honor ID โ†’ Cloud โ†’ Data recovery.
  2. Select the latest backup (see the date of creation in the list).
  3. Tick the checkbox Contact and click Restore.
โš ๏ธ Attention: When restoring from a backup Honor ID all current contacts will be replaced with data from the copy. Pre-export existing numbers to a file .vcf via Contacts โ†’ Settings โ†’ Import/Export.

3. Using third-party recovery applications

If the recycle bin is empty and there are no backups, specialized software will help. The best options for Honor:

  • ๐Ÿ› ๏ธ DiskDigger - scans the internal memory for remnants of deleted data. The free version finds contacts in the format .vcf.
  • ๐Ÿ” GT Recovery โ€”works without root access, restores numbers from the application cache Contact.
  • ๐Ÿ“ฑ Undeleter โ€”paid application with deep scanning (suitable for phones with EMUI/Magic UI).

Instructions for DiskDigger:

  1. Install the application from Google Play or APKMirror (if there is no access to services Google).
  2. Select Full scan (takes more time, but finds more data).
  3. Once completed, mark files with extension .vcf (contacts) and save them.
  4. Import the recovered file via Contacts โ†’ Settings โ†’ Import.
โš ๏ธ Attention: Do not install recovery applications on the same memory where deleted data is stored (for example, on an internal drive). This may overwrite remaining contact fragments. Use an SD card or the cloud.

Charge the phone to at least 50%|Turn off Wi-Fi and mobile data|Do not create new contacts/photos|Save recovered files to the SD card-->

4. Restoring via a SIM card (if the number was saved to it)

If the contact was stored on a SIM card, it can be returned even after being deleted from the phone. To do this:

  1. Insert SIM into another phone (for example, push-button Nokia or old Android).
  2. Go to Contacts โ†’ Settings โ†’ Import/Export โ†’ Import from SIM.
  3. Copy the number back to Honor via export to file .vcf.

Method limitations:

  • ๐Ÿšซ Only name + number are stored on the SIM card (without additional fields like email or address).
  • ๐Ÿ“› SIM memory capacity is limited (usually 250โ€“500 contacts).
  • โณ Old SIMs (format Mini-SIM) may not support the import function on new ones smartphones.

On models Honor 8X/9X/10 with firmware EMUI 9.1 there is a bug: when importing from SIM, contacts are duplicated. Before the procedure, delete all existing numbers or use another phone for intermediate copying.

5 Contacting a mobile operator (if the number is linked to SIM)

If you have lost not only the contact, but also the SIM card itself, you can restore your phone number (not the contact!) through your operator. To do this you will need:

  • ๐Ÿ†” Passport or other identity document.
  • ๐Ÿ“„ Agreement for the provision of communication services (if concluded).
  • ๐Ÿ’ณ SIM PIN code (if installed).

The procedure depends on operator:

Operator Recovery method Term Cost
MTS Through a communication salon or online chat (personal office) 1โ€“3 hours Free
Beeline Call to 110 or visit to the office Up to 24 hours 100โ€“200 โ‚ฝ
MegaFon Via the MegaFon application or office 30 minutes Free
Tele2 Only in the communication salon Up to 48 hours 150 โ‚ฝ
โš ๏ธ Attention: The operator will restore only phone number, but not contacts saved on the SIM. If you specifically need deleted records, use the methods from the previous sections.

6. Manual recovery via ADB (for advanced users)

If you deleted a contact recently and did not reboot your phone, you can retrieve it via Android Debug Bridge (ADB). This method requires command line skills, but gives maximum chances of success (up to 90% in the first day after removal).

Instructions:

  1. Install ADB Tools on PC.
  2. Turn on USB debugging on Honor (Settings โ†’ About phone โ†’ Build number - tap 7 times, then return to Settings โ†’ System โ†’ For developers).
  3. Connect your phone to the PC and run the commands:
    adb shell
    

    su

    cd /data/data/com.android.providers.contacts/databases

    sqlite3 contacts2.db

    .select * from raw_contacts WHERE deleted=1;

  4. Find the deleted contact in the output and copy it _id.
  5. Restore the entry with the command:
    UPDATE raw_contacts SET deleted=0 WHERE _id=YOUR_ID;

After the phone restarts, the contact will appear in the list. This method only works on unencrypted devices with root access or unlocked bootloader.

What to do if ADB does not find deleted contacts?

If the command select * from raw_contacts WHERE deleted=1; returns an empty result, it means:

1) More than 24 hours have passed and the data has been overwritten.

2) The contact was not deleted through the standard application Contact, and through third-party software (for example, Truecaller).

3) Data encryption is enabled on the phone (check in Settings โ†’ Security).

In such cases, try the methods from section 3 (third-party applications) or contact the service center Honor for physical recovery of data from the memory chip.

7. Prevention: how to avoid losing contacts in the future

To no longer encounter the problem of deleted numbers, set up automatic synchronization:

  • โ˜๏ธ Enable backup in Google Contacts (Settings โ†’ Accounts โ†’ Google โ†’ Synchronization).
  • ๐Ÿ”„ On models with Magic UI 7.0+ activate Honor Cloud in the account settings.
  • ๐Ÿ“ฅ Regularly export contacts to a file .vcf (once a month) and save it to your PC or cloud.
  • ๐Ÿ›ก๏ธ Install the application Super Backup for automatic local backups.

Also avoid:

  • โŒ Storing contacts only on a SIM card (limited capacity and risk of loss).
  • โŒ Using "memory optimizers" that clear the application cache Contact.
  • โŒ Manually editing the contact database via ADB without backup.
๐Ÿ’ก

The most reliable way is double synchronization: and with Google, and with Honor ID. This guarantees recovery even if the phone is reset to factory settings.

FAQ: Frequently asked questions about restoring numbers on Honor

Is it possible to restore a contact if the phone has been reset to factory settings?

Yes, but only if synchronization with was enabled before the reset. Google or Honor ID. In this case, contacts will be restored automatically when you log into your account again. If there was no synchronization, the chances are minimal - professional data recovery via a memory chip will be required (paid service, cost from 3,000 โ‚ฝ).

I deleted a contact a month ago. Is there a chance to return it?

Standard methods (recycle bin Google Contacts) store data for up to 30 days. After this period, the number can only be restored through a deep memory scan with specialized apps (for example, Dr.Fone) or by contacting a service center. Success depends on how much new data was written to the phone after deletion.

On my Honor there is no โ€œTrashโ€ item in contacts. Why?

This function appeared only in Magic UI 4.0+. If you have older firmware (for example, on Honor 8A/9A), update it via Settings โ†’ System update. Also, the trash can can be hidden if contacts are synchronized only with Google โ€”in this case, look for deleted numbers in contacts.google.com.

Is it possible to restore the number if the phone does not turn on?

If Honor does not respond to charging or is stuck on the logo, try connecting it to the PC in Fastboot (press and hold Volume down + Power) and copy the data via ADB. If this does not help, you will need to disassemble the device and connect it to the programmer (the service is available at service centers). Cost - from 2,500 โ‚ฝ, success depends on the model and type of breakdown.

I deleted a contact via Truecaller. How to return it?

Truecaller stores its own contact database, separate from the standard one. To restore a number:

  1. Open Truecaller and go to Settings โ†’ Backup.
  2. Restore the last copy (if there is one).
  3. If there is no backup, check basket in Truecaller (Profile โ†’ Trash).

Contacts deleted via Truecaller contacts do not go into the standard trash Honor!