Why are the Mi A3 screenshots a separate topic?
Xiaomi Mi A3 is a unique smartphone in the companyβs lineup, running on pure Android One instead of the usual MIUI. This means that the standard keyboard shortcuts for screenshots, relevant to other Xiaomi models (for example, Redmi Note 8 or Mi 9), may not work here.
In this article, we will look at all the working ways to create screenshots on the Mi A3, including hidden Android 9/10 features, gestures and third-party utilities. Special attention will be paid to solving typical problems, from the βblack screenβ on the screen to the inability to save a file in the gallery. If your smartphone is updated to Android 11 through custom firmware, here too, there is relevant information.
For convenience, we have divided methods by complexity, from basic (for beginners) to advanced (for root-right users), and at the end of the article, we have a table comparing methods by speed, reliability and compatibility with different versions of the software.
Method 1: Standard key combination (works 95% of the time)
The most reliable method that works on the Mi A3 regardless of Android version (9, 10 or 11).
β οΈ Attention: On Mi A3 with unoriginal firmware (for example, ported) MIUI) This combination may conflict with system gestures. If the screen flashes but the screenshot is not saved, try turning off navigation buttons in Settings. β System system β Gestures.
Instructions:
- Open the screen you want to capture (app, web page, settings).
- Press the power button (right) and the volume button (left) at the same time.
- Hold both buttons for 1-2 seconds until you hear the shutter sound (or see an animation of the screenshot).
- The image will automatically be saved to the Pictures β Screenshots folder.
If the sound is turned off, pay attention to the visual cues:
- πΈ Animation: Short-term screen blinking (like a camera flash).
- π± Notification: In the top panel will appear the screenshot icon with the buttons "Share" and "Delete".
- π Folder: The file is called Screenshot_YYYYMMDD-HHMMSS.png.
Screen's open.|Memory not filled (minimum 50 MB free)|The screen is not locked.|Don't disturb mode is off"-->
On some firmware (e.g. Pixel Experience), the combination may be different. If it doesn't work, move on to the next method.
Method 2: Swipe Hand gesture (Hidden Android feature)
Few people know, but the Mi A3 on pure Android has a built-in gesture for screenshots β putting your hand on the screen with your rib β is disabled by default, but it's easy to activate:
Steps to include:
- Go to Settings β System β Movements (or Special Options β Movements on Android 11).
- Find the option "Palm swipe to capture" (or "Palm swipe to capture" in English).
- Activate the switch and confirm the permissions.
How to use:
- π Apply the edge of your palm (closer to your little finger) to the right or left edge of the screen.
- π² Quickly swipe your palm across the screen from left to right or right to left (as if you were swiping the page).
- π― The motion should be straight and cover at least 80% of the screen.
π‘
If the gesture doesnβt work, try reducing the sensor sensitivity in the screen settings or wipe the display from the fat β sensors may not recognize the touch.
Advantages of the method:
- β It works with one hand (comfortable for large screens).
- β There is no risk of accidentally turning off the phone (unlike the keyboard combination).
- β Faster than the standard method by 30-40%.
Disadvantages:
- β It can be triggered by accident when playing games or scrolling long pages.
- β Does not work in some gesture-blocking apps (e.g. banking apps).
Keyboard combination | Palm gesture | Voice assistant | Apps |Another way-->
Method 3: Voice command via Google Assistant
If you have Google Assistant enabled (activated by default on Mi A3), you can take voice screenshots, which is especially useful when your hands are busy or the screen is dirty, even on a locked device (if voice unlock is allowed).
Instructions:
- Say βOK Googleβ or hold the button home (if itβs on the screen).
- Say the command: "Take a screenshot" or "Make a screenshot".
- The assistant will confirm the action and save the picture in the gallery.
Additional commands:
- π£οΈ "Take a screenshot and share in Telegram β the sending menu will immediately open.
- π£οΈ "Screenshot and cropping" - will open the image editor.
- π£οΈ "Screenshot in 3 seconds is useful for preparation.
Limitations:
- π Does not work in offline mode (you need the Internet to process the command).
- π In some apps (such as Netflix or banking), screenshots are blocked at the Android level.
- π΅ Voice input may not work in noisy rooms.
Why isn't the assistant taking a screenshot?
Method 4: Screenshot applications (for advanced features)
If the built-in methods are not suitable (for example, you need to scrolle screenshots or record the screen), you can use third-party utilities. We tested 5 popular applications on the Mi A3, the best results showed:
| Annex | Functions | Compatible with Mi A3 | Cons |
|---|---|---|---|
| Screenshot Easy | Screenshots by gesture, timer, cropping, screen recording | β Android 9β11 | Advertising in the free version |
| Screen Master | Page scrolling, editor, cloud storage | β Android 10+ | Requires Availability Permits |
| Super Screenshot | Delayed photos, annotations, templates | β οΈ Android 9 can be a squash. | Paid stickers |
How to install and configure (Screenshot Easy example):
- Download the app from Google Play.
- When you first start, provide storage permissions, window overlays, and special features.
- In the application settings, select the activation method: π Floating button (appears on top of all windows). π Shaking the phone (sensitivity is adjusted). π Triple touch across the screen.
ScreenshotEasy
β οΈ Attention: Applications with screen recording function (e.g, AZ Screen Recorder may conflict with Mi gestures A3. If after installation, standard screenshots stopped working, disable "Opening windows" in the settings of the problem application.
More powerful tools are available for root-right users, such as the Xposed Framework with Screenshot, which allows you to take pictures even in secure applications (such as SberBank Online), but require technical knowledge.
π‘
The app side is useful for advanced features, but can reduce smartphone performance. If the Mi A3 started to brake after installing the utility, clear the cache in Settings β Apps β [program name] β Storage.
Method 5: Screenshot via ADB (for developers)
If standard methods donβt work (for example, after a failed firmware update), you can take a screenshot via Android Debug Bridge (ADB), which requires a connection to a computer, but is guaranteed to work even on βbrokenβ systems.
What you need:
- π» Computer with Windows/Linux/macOS.
- π Cable USB (preferably original).
- π οΈ Installed drivers ADB and Fastboot.
- π± Included debugging by USB on Mi A3.
Step-by-step:
- Activate Developer Mode: Go to Settings β About Phone. 7 times click on βBuild Numberβ (you will be notified βYou became a developerβ).
- Turn on USB Debugging: Return to Settings β System β Developer. Activate the USB Debugging switch.
- Connect the Mi A3 to your computer and confirm your trust in the device.
- Open the command prompt (Windows) or terminal (Linux/macOS) and type: Adb devices Make sure your smartphone appears in the list.
- Take a screenshot by command: adb exec-out screencap -p > screenshot.png The file will be saved in the folder where the command was launched.
Additional ADB commands for screenshots:
- π Cut the image to the specified area: adb shell screencap -p | sed 's/\r$//' | perl -pe 'binmode STDIN; binmode STDOUT;' | adb exec-out perl -e 'binmode STDIN; binmode STDOUT; print while read $_, 1024;' > screen.png
- π Take a screenshot with a delay 5 Adb shell input keyevent 26 && sleep 5 && adb exec-out screencap -p > delay.png
β οΈ Note: If, after connecting to ADB mi A3 Starts flashing or artifacts appear, disable hardware acceleration in Windows graphics settings (for example, for the first time). NVIDIA/AMD). This is due to driver conflict.
Solving screenshot problems on Mi A3
Even on a good device, you can have errors when you take screenshots.-5 problems and ways of eliminating them:
| Problem. | Reason. | Decision |
|---|---|---|
| Screenshot not saved | Insufficient memory or damaged folder Screenshots | Clear the gallery cache in Settings β Apps β Gallery β Storage. Reboot your phone. Create Screenshots folder manually through the file manager. |
| Black screen on the screen | Conflict with energy saving mode or the topic of design | Turn off the dark theme or adaptive brightness in the screen settings. |
| No shutter sound. | The sound is disabled in the profile or the system file is corrupted | Check the volume of the media or reinstall the firmware through Fastboot. |
If none of the methods helped, reset the settings (backup data is mandatory!):
- Go to Settings β System β Resetting settings.
- Select Reset All Settings (does not delete files, but resets system settings).
- After rebooting, check the screenshots.
For users with custom firmware (such as LineageOS or HavocOS):
- π§ Check firmware compatibility with Android 10/11 (forum XDA Developers).
- π Update. TWRP last-minute.
- π¦ Reinstall GApps (Google Services Package) β sometimes the problem is the lack of system libraries.