Android adb 查看当前连接设备

在Android Studio中我们可以在底部LogCat中很直观地查看到当前连接的设备

imgClick and drag to move

还有一种方法是直接在cmd命令行中输入adb devices命令查看

如下所示,我电脑目前连接了两台设备,一台我的手机真机,一台是模拟器

1
2
3
4
5
6
7
C:\Users\Him>adb devices
List of devices attached
BY2QLS149K055335 device
emulator-5554 device


C:\Users\Him>

Click and drag to move

imgClick and drag to move