A black screen, lack of response to pressing the power button or an endless reboot cycle on an Android smartphone often means a critical failure that threatens the safety of valuable photos, correspondence and work files. Even if the device visually appears to be completely inoperative, the operating system architecture in some cases keeps the data accessible, allowing it to be retrieved through special boot modes, connecting to a PC, or external control tools, bypassing a faulty display or sensor.

Before proceeding with complex manipulations, it is necessary to conduct an initial diagnosis of the device’s condition. Often the problem lies not in a fatal failure of the motherboard, but in a banal battery discharge or system freeze. Try connecting your phone to the original charger and leaving it for at least 30-40 minutes, even if the charging indicator does not light up immediately. Sometimes a deep discharge of the battery takes time to reach the minimum voltage required to start the power controller. If the phone responds to the connection with vibration or sound, but the screen remains black, the chances of saving data increase significantly.

In this article we will look at a detailed algorithm of actions for retrieving information in various failure scenarios. We will look at methods of connecting to a computer, working with the mode Recovery, using software debugging USB and specialized software. It is important to understand that the success of the operation directly depends on the type of fault: a software failure is easier to treat than physical damage to the memory controller or display module. You should not immediately take the device to the service for a complete resoldering if there is a chance to copy the files yourself through available interfaces.

Primary diagnostics and testing of the hardware

The first step is to exclude simple causes of failure. Make sure the charging port is not clogged with dust or lint, which often prevents the cable from making a tight connection. Gently clean the connector USB Type-C or Micro-USB with a wooden toothpick, avoiding metal objects that could short the contacts. If the phone vibrates when connected to a PC, but does not charge, the problem may be with the power controller or the battery itself, but the logic part of the device may still work.

Try a force reboot, as the system may be stuck in a boot loop or black screen. For most models Samsung, Xiaomi i Huawei you need to hold down the combination of the power and volume down buttons for 10-15 seconds. If you feel a vibration or see a brand logo, it means the processor is alive and you can try to enter the system or recovery mode. In some cases, connecting to an external monitor via an adapter helps if your smartphone supports video output. USB-C to HDMI, if your smartphone supports video output.

⚠️ Attention: If the phone gets very hot in the camera or processor area when you try to turn it on, immediately unplug it. This is a sign of a short circuit on the board, and further attempts to supply power may permanently damage the memory controller, making the data unrecoverable.

Check the device's response to calls from another number. If the phone buzzes, vibrates, or the notification LED lights up, it means the operating system is working and the problem is localized solely to the display module. This is the most favorable scenario, allowing you to use remote control methods or connecting peripherals to pull out files without replacing the screen.

📊 How does your phone behave when connected to charging?
No (completely dead)
Vibrates/Sounds
The indicator lights up
The logo appears, but nothing further loading

Retrieving data via a computer connection

If the device is recognized by the computer as a removable disk or media device, you can copy photos and documents in the standard way. Connect your smartphone with a cable to the PC and carefully monitor the notifications on the screen (if it is even slightly illuminated) or the system’s sound signals. Ideally, a new disk will appear in My Computer, the contents of which are readable. However, Android often connects in “Charge Only” mode by default, requiring confirmation on the screen to access files.

You can use USB mouseto bypass the screen lock when the display is damaged. You will need an adapter USB OTG (On-The-Go), which is inexpensive and sold at any electronics store. By connecting a regular computer mouse to your smartphone, you will see a cursor on the screen (if the matrix is ​​intact, but the touchscreen is broken) or you will be able to blindly press buttons. The cursor usually appears in the center or corner, allowing you to unlock the device with a pattern or PIN code, and then allow access to files for the PC.

If the screen is completely black, but the phone is working, you can try the "blind" input method. Connect the mouse, wait for the characteristic sound of connecting peripherals in Android, then left-click at the intended place for entering the password. After that, click Enter on the virtual keyboard (which the mouse will not press, but you can also connect a USB keyboard via an OTG hub). After entering the unlock code, connect the phone to the computer and use hot keys or voice control, if configured, to copy data.

☑️ Preparing for connection via OTG

Completed: 0 / 5

It is worth considering that modern versions of Android have strict security policies. If you have not previously trusted this particular computer via USB debugging, access to the file system may be denied even after unlocking. In this case, connecting a mouse will only help for navigation inside the phone, but not for transferring files to a PC via cable. Then you will have to use cloud services or third-party applications to transfer data via Wi-Fi, controlling them via the mouse.

Using Recovery and Fastboot mode

Mode Recovery is a special recovery section built into the Android firmware, which works independently of the main operating system. You can get into it using a key combination when the phone is turned off (most often Volume Up + Power or Volume Down + Power). In this menu, control is carried out using the volume buttons (up and down) and the power button (select). If you managed to enter Recovery, you can try to reset the settings (Wipe data/factory reset), but this will delete the data, so this item is not suitable for us.

We are interested in the ability to connect to a PC in download mode. Some custom recovery (for example, TWRP) have a function Mount (Mount), which allows you to connect the internal memory of the phone as a flash drive to the computer directly. If you have such a recovery installed, go to the Mountsection, check the Data and Internal Storagecheckboxes, then connect the cable to the PC. The file system will become readable without loading the main Android system.

Mode Fastboot (or Bootloader) is used primarily for flashing, but some utilities allow you to work with memory sections from this state. Entering Fastboot is usually done by holding Volume Down + Power. An Android with an open hatch or the words Fastboot will appear on the screen. Through the console on a computer with ADB installed, you can send a command fastboot flash or try to read partition images, although this requires high qualifications and is risky for an inexperienced user.

Commands for working with partitions in Fastboot

To view connected devices, enter the command "fastboot devices". To try to copy the image of the userdata partition (where your data is located), the complex command "fastboot flash userdata backup.img" is used, but this requires free space and superuser rights, which in bootloader mode is often inaccessible without an unlocked bootloader.

It is important to note that on modern smartphones with an encrypted disk (encryption is enabled by default in Android 6.0 and higher) access to data via Recovery or Fastboot without entering the screen unlock password is impossible. You will see an empty folder or an access error. This is done to protect information if the device is stolen, but complicates data recovery if it breaks.

Using USB debugging (ADB) to rescue files

The tool Android Debug Bridge (ADB) is a powerful means of interacting with the device at a deep level. If you have previously enabled USB debugging in the Developer Options menu on your phone, you can manage the file system even with a black screen using the command line on your computer. First you need to install the package Platform Tools on your PC and connect your phone with a cable.

Check the connection by entering the command adb devicesin the command line. If a device with a serial number and status appears in the list device, you're in luck. You can use the command adb pull /sdcard/ C:/Backup/to copy all the contents of the internal memory to the Backup folder on drive C. This command works recursively, maintaining the folder structure.

adb pull /sdcard/DCIM/ C:/Photos_Recovery/

adb pull /sdcard/Download/ C:/Docs_Recovery/

adb pull /sdcard/WhatsApp/ C:/Messenger_Recovery/

If the device status shows unauthorized, which means the phone requires debugging confirmation on the screen. In this case, without a working display or a connected mouse (via OTG) to click the “Allow” button, nothing can be done. However, if you previously checked the “Always allow from this computer” checkbox, the connection will be established automatically. You can also try sending a command to unlock or emulate presses if the phone is simply frozen:

adb shell input keyevent 26

This command emulates pressing the power button, which can wake up the screen or reboot the device into normal mode. The command adb shell wm density or other system calls can help if the problem is related to incorrect screen resolution, due to which the image is not displayed.

💡

If ADB sees the device, but the pull commands give an access error, try first rebooting into recovery mode using the "adb reboot recovery" command if you have a custom recovery with MTP support.

Specialized software for data recovery

There are many apps positioned as tools for recovering data from broken Android smartphones. Popular solutions include Dr.Fone, Tenorshare UltData, DroidKit and others. These utilities offer a graphical interface that simplifies the process for a user unfamiliar with console commands. They scan the device for deleted or hidden files and try to extract them.

Most of these apps work according to a similar algorithm: they try to gain root access on the fly or use bootloader vulnerabilities to access memory. However, the effectiveness of these tools varies greatly depending on the phone model and Android version. On new devices with secure bootloaders and encryption File-Based Encryption the chances of success without unlocking the screen tend to zero.

app name Access type Requires Root Encryption support
Dr.Fone Logical/Physical Often required Low
Tenorshare UltData Logical No Average
DroidKit System Automatic Depends on the model
Android Data Recovery Logical Yes Low

Use trial versions of apps before purchasing. They usually allow you to scan your device and show (preview) the files found. If you see your photos and contacts in the preview, then purchasing a license makes sense. If the app writes that the device is not supported or requires an unlocking that you cannot perform, do not waste your money.

⚠️ Attention: Avoid apps that promise “100% recovery” from any device. This is a marketing ploy. Physically damaged memory (eMMC/UFS) cannot be repaired by software, and access to encrypted data without a key (screen password) is mathematically impossible for ordinary users.

When help from a professional service is needed

If software methods do not produce results and the phone does not turn on at all (no vibration, response to buttons, heating), the problem lies at the hardware level. This could be a processor failure, a burnt-out power controller, a broken memory, or broken cables. In such cases, independent attempts can only aggravate the situation, for example, cause a short circuit when power is supplied to damaged circuits.

Professional service centers have equipment for working with memory directly. The method Chip-Off involves unsoldering the memory chip (eMMC or UFS) from the phone board and reading its contents on a special programmer (for example, PC-3000 Mobile or Medusa). This is a complex and expensive procedure that requires a clean room and highly qualified engineer, since if the chip overheats, it can be irretrievably destroyed.

Another method is to restore the power circuits or replace the display module with a known good one (“donor”) for temporary access to the system. If the phone turns on with the new screen, you can safely copy the data. This is often the most reliable and cheapest way if the matrix and touchscreen are broken, but the board is intact. The service can offer a “data recovery” service without completely replacing the screen by connecting the test matrix with a cable.

💡

If the data is critical, do not try to solder the board yourself. The risk of damaging the memory crystal with a heat gun is extremely high, which will make restoration impossible even in the laboratory.

The cost of such work varies from several thousand rubles for temporarily installing a screen to tens of thousands for reading the memory directly. Before contacting the service, be sure to check whether they provide a guarantee of data safety and whether they charge payment in case of failure. Good laboratories work on the principle of “no data - no payment” (except for the cost of diagnostics).

Frequently asked questions (FAQ)

Is it possible to pull out a photo if the phone asks for a pattern and the screen does not work?

If the screen is black and does not show an image, but the phone works, you can connect a USB mouse via OTG adapter. You won't see the cursor, but you can try to draw the key blindly, based on your memory of the location of the dots. If the screen shows an image but does not respond to touches, the mouse will help you unlock the device and copy files.

Resetting to factory settings will help if the phone does not turn on?

Resetting (Wipe Data) via Recovery mode can help if the problem is a software glitch (for example, the phone hangs on the logo). However, this operation will completely delete all user data (photos, contacts, messages). Use this method only if the goal is to revive the phone, and not to save information.

Will apps for recovering data from an SD card help?

apps for SD cards (such as Recuva or DiskDrill) only work with removed memory cards through a card reader. They cannot access the phone's internal memory unless it turns on and is recognized by the computer as a storage device. The internal memory of Android has a different file system and protection.

What to do if the computer does not see the phone at all?

Try another USB cable (preferably the original one) and another USB port on the computer (preferably behind the system unit). Install drivers for your phone model. If an unknown device with a yellow exclamation mark appears in Device Manager, try updating your drivers manually by selecting MTP USB Device. If there is no reaction, there is probably a problem with the power controller or the phone’s charging port.

Is it possible to recover data from a completely burned board?

At home, no. In a specialized laboratory, it is possible to read a memory chip using the Chip-Off method, if the memory crystal itself has not suffered from overheating or physical shock. This is an expensive procedure, and success is not 100% guaranteed, especially if the memory was encrypted with a key stored in the processor (which could also burn out).