Have you heard of ADB (Android Debug Bridge) and been suggested to enable it on your Android phone? This article will provide you with three good reasons why you should enable ADB immediately.
ADB allows you to wirelessly mirror your phone screen to your computer via scrcpy. You can use better-adb-sync for file synchronization and track progress between your Android smartphone and your computer. It also allows you to easily capture your phone screen and transmit it wirelessly to your computer.
1. Wireless mirroring of the mobile phone screen to the computer
The latest macOS and iOS updates allow you to mirror your iPhone screen to your Mac computer. But in Android, sadly, there is no native way to mirror the screen of an Android device to a Windows PC (or any computer).
At this time, scrcpy comes in handy. The name is a bit weird (screen copy), but it works very well with ADB over the Home Network on the OnePlus 13R with almost no lag, and the mirroring display is as smooth as the actual touch operation. The gesture operation is also the same as on the OnePlus 13R, and all functions are exactly as expected.
After installing on macOS, Windows, or Linux, you can run the command
scrcpy
in the terminal, remotely connect to your phone, and display (and interact) its screen on your computer.
I have connected two devices to my PC at the same time, one via USB and the other via Wi-Fi. I ran the command scrcpy -e
to force a connection over Wi-Fi, and the effect was flawless. Running scrcpy -d
will force connection over USB (unless your Wi-Fi network is unstable, there is no need to do so).
Anyway, if you want to keep your phone screen displayed on your PC, then use scrcpy. Remember that your phone must remain unlocked and the screen is on for the program to work properly, and you must enter any password on the phone screen (not the computer screen).
2. Synchronize files between computers and mobile phones
Although ADB natively has adb push
and adb pull
commands, I prefer to use better-adb-sync. It is more like a rsync type program that can be used to synchronize files between a computer and a mobile phone.
Related content: ##### How to install and use ADB (Android Debug Bridge) utility
Want to control your Android device from your computer?
The core features are very similar to adb push
and adb pull
, but one feature makes it stand out: --show-progress
logo. This will show the progress of the file transfer between the phone and the computer. After better-adb-sync is installed, the command is just adbsync
. Therefore, you can run a command like adbsync --show-progress pull /sdcard/video.mp4 .
to move the video file from the phone storage to the computer while showing progress.
Understanding the transmission status is crucial. I don't like just sending commands and then waiting for a blank response until it fails or succeeds. Is it still working? Is the transmission still going on? Is it stuck? Is it slow? Is that why it takes so long? These are questions I often ask when I transfer files in the terminal.
Being able to use the --show-progress
flag of better-adb-sync is crucial to me, and I'm sure you'll find it very useful too.
3. Wireless screenshot and transmit to the computer
If you want to easily capture the screen of your phone and transfer the image to your computer at one time, ADB is the best choice for you.
Just issue the command
adb shell screencap /sdcard/screen.png
and your phone will take the screen. Then, use a command like adbsync pull /sdcard/screen.png .
, which will pull the file to your computer. If you connect to your phone wirelessly via Wi-Fi, all of this can be done via Wi-Fi without cables.
This is very useful when you try to send something from your computer to someone else but need information from your phone. Or, if you have a lot of phones around you and can't remember which button shortcut key is a screenshot, you can also use it.
There are many reasons to use this command, and I think each reason works. Additionally, it works perfectly with better-adb-sync, allowing you to easily pull files to your computer after screenshots.
Want to learn more ADB commands that can be used on Android smartphones? Here are nine best ADB commands that every Android user should know.
The above is the detailed content of 3 Reasons to Enable ADB on Android. For more information, please follow other related articles on the PHP Chinese website!