A โโbroken smartphone screen is one of the most unpleasant situations for the owner. Especially if the device stores important photos, work documents or contacts that urgently need access. Even if Android phone does not respond to touches, it does not turn on or shows only a black backlit screen, there are still chances to get the data back. In this article - 7 proven methods information extraction, from simple (via cloud services) to radical (disassembling and connecting to a PC via test points).
The main rule: do not panic and donโt rush to take your phone for repair. In 80% of cases, data can be saved on your own, even without special skills. We will analyze the options for different scenarios: when the screen totally black, when only part of the display works, when the phone loadsbut does not respond to touches, and even when the device does not turn on at all. Important: the sooner you start acting, the higher the chances of success - some methods (for example, through ADB) require that the phone at least somehow respond to the connection.
If your Samsung, Xiaomi, Huawei or another Android device has crashed, but is still showing signs of life, this guide is for you. For convenience, we have arranged the methods from the simplest to the most complex. Start with the first section and move on to the next only if the previous one did not work.
1. Retrieving data through cloud services (if synchronization was enabled)
The fastest and safest way is to restore data from cloud backup. If synchronization with Google Account, Mi Cloud (for Xiaomi), Samsung Cloud or other services of the manufacturer has been activated on the phone, some of the data may already be safe.
What can be returned to such method:
- ๐ Contact (synchronizes with Google automatically, unless manually disabled)
- ๐ท Photos and videos (if enabled Google Photos or a similar service)
- ๐ Calendar, notes, tasks (via Google or proprietary clouds)
- ๐ต Music and documents (if downloaded to Google Drive, OneDrive etc.)
How check:
- Log in to your Google Account from another device (PC, tablet, phone).
- Go to Google Drive โ section
Backup copies. - For photos, open Google Photos and check the folder
Devices. - Contacts can be seen on the page Google Contacts.
โ ๏ธ Attention: If the broken phone was turned on Two-step authentication via SMS, but the SIM card remains in the device, access to the account may be blocked. In this case, try using backup codes (if saved) or restore access via confirmation by email.
2. Connecting to a PC via USB (if the phone turns on and is detected)
If the screen is broken, but the phone turns on and the computer recognize it as an external drive, you can copy the files directly. This method works even if the sensor does not respond to touches - the main thing is that the device is detected in the system.
Instructions:
- Connect the phone to the PC via USB cable (preferably original).
- A request for
File transfer modeshould appear on the phone (usually pops up in the notification shade). If the screen does not work, try Blind input:- ๐ Press the button
Volume up+ connect the cable - this can forcefully activate the mode MTP. - ๐ On some models (Samsung, LG), holding
Volume down + Powerfor 10 seconds helps.
- ๐ Press the button
This computer (Windows) or Finder (Mac) - the phone should appear as a removable drive.DCIM for photos, Downloads for downloads, Pictures for images).If the phone is not detected:
- ๐ Try another USB port or cable (preferably with support USB 3.0).
- ๐ฅ๏ธ On your PC, install drivers for your model (you can download it from the manufacturerโs website, for example Samsung or Xiaomi).
- ๐ Restart your phone in
Safe Mode(holdPoweruntil the menu appears).
Stock an original cable|Check the functionality of the USB port on your PC|Install drivers for the model phone|Prepare an external drive for copying data|Try different connection modes (MTP, PTP)
-->
| Problem | Possible cause | Solution |
|---|---|---|
| Phone is not detected | Missing drivers | Install ADB drivers or package from the manufacturer |
| Unlock request appears | Locking is enabled screen | Use Smart Lock or fingerprint (if the sensor is partially working) |
| The phone is charging, but does not transfer files | The USB port is damaged | Try wireless transmission (see section 3) or disassemble the device |
The computer sees the phone as Media device, but the folders are empty |
The file system is damaged | Use recovery apps (for example, Recuva or Disk Drill) |
3. Wireless data transfer (Wi-Fi, Bluetooth, FTP)
If USB port the phone is damaged or the phone is not detected via the cable, you can try to transfer files by air. To do this you will need:
- ๐ถ Working Wi-Fi or mobile data on the phone.
- ๐ฑ A second phone or PC for receiving data.
- ๐ง Application for remote control (for example, TeamViewer QuickSupport, AirDroid, FTP server).
Method 1: Via an FTP server (if the phone is connected to Wi-Fi)
- Install the application on your broken phone FTP Server (for example, WiFi FTP Server). If the screen does not work, try voice control via Google Assistant:
- On another device, connect to FTP server via a browser or FileZillausing the IP address and port from the application.
- Download the necessary files.
Okay, Google, open WiFi FTP Server
Method 2: Via Bluetooth (if the sensor is partially working)
If the screen responds to touches in certain areas, you can turn on Bluetooth and transfer files one by one:
- Activate Bluetooth in the notification shade (usually swipe down from the top edge of the screen).
- Connect a second phone or PC.
- Select files and send them through the menu
Share.
โ ๏ธ Attention: Wireless methods are slow and not suitable for large amounts of data (for example, 4K video If you need to save). tens of gigabytes, it is better to use USB debugging (section 4) or physical disassembly (section 6).
If you have Samsung with the function Samsung Flow, try connecting to another brand device via Wi-Fi Direct - this will allow you to control broken phone from the work screen.
4. Using ADB (Android Debug Bridge) to access files
ADB (Android Debug Bridge) is a debugging tool that allows you to manage your phone via command line PC. The method works even if the screen is completely black, but the phone is detected by the computer. The command line is turned on. installed turns on and is determined by the computer.
What you will need:
- ๐ฅ๏ธ Computer with installed ADB (you can download it as part of Android Studio or separately).
- ๐ USB cable (preferably original).
- ๐ง Enabled
USB debuggingon the phone (if not, see spoiler below).
Instructions:
- Connect the phone to the PC and open command line (Windows) or Terminal (Mac/Linux).
- Check if the PC sees the device:
adb devicesIf the serial number appears in the response, you can continue.
- Copy the files to the computer (example for photo):
adb pull /sdcard/DCIM/ C:\Backup\PhotosHere
/sdcard/DCIM/is the path to the folder on the phone, aC:\Backup\Photosis a folder on the PC.
If USB debugging was not enabled in advance, try activating it blind method:
How to enable USB debugging on a non-working screen
1. Connect your phone to the PC and enter in the command line:
adb shell input keyevent 82
This simulates pressing the menu Settings.
2. Next, send commands to navigate the menu (for example, input swipe 300 500 300 200 to swipe up).
3. Find the section For developers and activate USB debugging.
โ ๏ธ The method requires precise knowledge of the location of menu items on your model!
List of useful ADB commands for data extraction:
| Command | Action |
|---|---|
adb pull /sdcard/ C:\Backup\ |
Downloads all files from internal memory |
adb shell ls /sdcard/ |
Shows a list of folders on the phone |
adb backup -f C:\backup.ab -apk -obb -shared -all |
Creates a full backup (requires confirmation on phone!) |
adb shell screencap -p /sdcard/screen.png |
Takes a screenshot of the screen (useful for diagnostics) |
ADB is the most powerful tool for retrieving data from a broken phone, but requires preliminary configuration (USB debugging). If it has not been enabled, proceed to the following methods.
5. Connecting a mouse or OTG cable for control
If the phone screen is works, but does not respond to touches, you can connect USB mouse or keyboard via OTG adapter. This will allow you to control the device like a regular computer.
What you need:
- ๐ฑ๏ธ USB mouse (wired or wireless with a USB receiver).
- ๐ OTG adapter (adapter from USB-C/Micro-USB to USB-A).
- ๐ The phone must be turned on and unlocked (if you have a PIN, try entering it blindly).
How to connect:
- Insert OTG adapter into the phone connector.
- Connect the mouse to adapter.
- The cursor should appear on the screen. Now you can:
- ๐ Open Explorer and copy files to a flash drive (if your phone supports OTG drives).
- โ๏ธ Upload data to cloud via browser.
- ๐ง Send files by email.
If the mouse does not work:
- ๐ Try another OTG adapter (not all support power for the mouse).
- ๐ Make sure the phone is charged (some adapters consume a lot of power).
- ๐ฑ๏ธ Use wireless mouse with its own power.
โ ๏ธ Attention: On some phones (Huawei, Honor), the function OTG is disabled by default. If the mouse is not detected, check the settings in theAdditional functionsorSystem.
6. Disassembling the phone and connecting the internal memory to the PC
If the phone does not turn on or the screen is completely dead, but you are sure that the internal memory (eMMC or UFS chip) is intact - you can remove it and connect it to the PC via card reader. This method requires skills in working with electronics and is suitable for skilled users.
What you will need:
- โ๏ธ A set of screwdrivers (Torx, Phillips) for disassembly.
- ๐ฅ Hair dryer or soldering station (for desoldering the chip memory).
- ๐พ Card reader with support eMMC/UFS (for example, ASProgrammer or EasyJTAG).
- ๐ฅ๏ธ app for working with memory (for example, Flash Tool or UFi Box).
Step-by-step guide:
- Disassemble phone:
- Remove the back cover (by heating the glue with a hairdryer or using suction cups).
- Disconnect the battery (required!).
- Find the memory chip (usually marked as eMMC or UFS, for example,
KLM8G1GETF-B041).
- Connect the chip to the card reader:
- Carefully unsolder the chip (if you have no experience, it is better to contact the service).
- Install it into the card reader adapter.
- Connect the card reader to the PC.
- Use a app to create a memory image (for example, Flash Tool).
- Extract the necessary files using hex-editor or specialized utilities (for example, UFi Box).
Important: Memory chips UFS 3.0/3.1 (used in 2019+ flagships) are extremely difficult to remove without damage. If your phone is newer Samsung Galaxy S10 or Xiaomi Mi 9, it is better to contact. data recovery laboratory.
| Phone model | Memory type | Extraction difficulty | Recommendation |
|---|---|---|---|
| Samsung Galaxy S8 | UFS 2.1 | Medium | You can try it yourself |
| Xiaomi Redmi Note 8 | eMMC 5.1 | Low | Suitable for beginners |
| Google Pixel 4 | UFS 3.0 | High | It is better to contact the service |
| Huawei P30 Pro | UFS 2.1 | Average | Requires care when soldering |
โ ๏ธ Attention: If you solder the memory chip carelessly, you can permanently damage the data. If the phone is under warranty or you are not confident in your skills, contact a specialized laboratory (for example, Data Recovery or Hetman Recovery). The cost of the service is from 5,000 to 30,000 rubles, depending on the complexity.
7. Contacting the service center: when nothing helps
If all of the above methods did not work, the last option remains - professional data recovery. This is relevant in the following cases:
- ๐ฅ Phone does not turn on and does not respond to charging.
- ๐ง Damaged logical memory structure (for example, after an unsuccessful update).
- ๐ ๏ธ Required replacement of the memory controller or other components.
- ๐ The data is encrypted and you do not know the password.
How to choose a service:
- ๐ Look for laboratories with clean rooms (class 100 or higher) - this ensures that dust will not damage the board.
- ๐ Check reviews on Yandex.Maps or 2GIS (especially pay attention to cases with data recovery).
- ๐ฐ Check the cost diagnosis (sometimes it is free) and work (payment only for the result).
- ๐ Ask agreement indicating terms and guarantees.
Average prices for data recovery (2026):
- ๐ฑ Logical damage (deleted files, firmware failure): 3 000โ10 000 โฝ.
- ๐ง Physical damage (soldering the chip, replacing components): 10 000โ30 000 โฝ.
- ๐ Hacking encryption (if the password is forgotten): from 20,000 โฝ (sometimes impossible).
List of verified services in Moscow and St. Petersburg:
| Name | Specialization | Average bill | Terms |
|---|---|---|---|
| Data Recovery | Complex cases, UFS 3.0+ chips | 15 000โ50 000 โฝ | 1โ5 days |
| Hetman Recovery | Logical recovery, encryption | 5 000โ20 000 โฝ | 1โ3 days |
| ITBase Laboratory | Soldering, replacement of components | 10 000โ30 000 โฝ | 2โ7 days |
โ ๏ธ Attention: Details of tariffs and terms may change. Before your visit, check the current conditions by phone or on the service website. Some laboratories charge an advance payment for diagnostics (usually 1,000โ3,000 โฝ), which is later included in the cost of work.
FAQ: Frequently asked questions about recovering data from a broken Android
โ Is it possible to recover data if the phone drowned?
Yes, but the chances depend on how quickly you removed the device from the water and whether you took measures to dry it. The main thing is not to connect the phone to the charger! Immediately: do not turn on phone and do not connect it to charger! Immediately:
- Remove the SIM card and flash drive.
- Dry the phone with a napkin (do not rub!).
- Place in a container with silica gel (packages from boxes with shoes) for 2-3 days.
- Contact the service - specialists will clean the board from corrosion in ultrasonic bath.
If the phone is already turned on after water, the chances of data recovery drop sharply due to a short circuit.
โ How to get data if the phone requires a pattern key?
There are several ways:
- Reset via Google Account (if the phone is connected to the Internet): after 5 unsuccessful attempts a button will appear
Forgot the pattern key?โ enter your account details. - ADB (if debugging is enabled): delete the file with the key with the command:
adb shell rm /data/system/gesture.keyAfter a reboot, the lock will be reset.
- Hard Reset (extreme case): reset the phone via
Recovery Mode(holdPower + Volume up), but this will delete all data!
โ Does the method of connecting a mouse work on everyone phones?
Most modern Android devices support USB OTG, but there are exceptions:
- โ Works: Samsung, Xiaomi, Google Pixel, OnePlus, Realme.
- โ ๏ธ Limitations: some models Huawei and Honor require manual activation of OTG in the settings.
- โ Does not work: very old phones (before 2015) or devices with custom firmware.
To check OTG support, search the Internet for the characteristics of your model by request: [model phone] OTG support.
โ Is it possible to recover deleted files after resetting the settings?
Yes, but with reservations:
- ๐ If the reset was done through
Settings, the data can still be recovered using apps like DiskDigger or EaseUS MobiSaver (provided that no new files were written to the phone). - ๐๏ธ If the reset is done via
Recovery Mode(Wipe Data), the chances are minimal - the data is overwritten. - ๐พ If after the reset the phone was used (installing applications, taking photos), nothing will be restored.
For maximum chances:
- Turn off the phone immediately after the reset.
- Connect the internal memory to the PC via card reader (see section 6).
- Use professional utilities (for example, R-Studio).