政务网站信息化建设情况,广告设计案例网站,网站目标规划,首先确定网站建设的功能定位查看连接状态
adb devices出现以下情况
C:\Users\22560adb devices
List of devices attached
127.0.0.1:5555 offline
emulator-5554 device可以发现我们想要连接的雷电模拟器的5555端口目前没有连接#xff0c;只有emulator-5554被连接了#xff0c;此时我们需要关…查看连接状态
adb devices出现以下情况
C:\Users\22560adb devices
List of devices attached
127.0.0.1:5555 offline
emulator-5554 device可以发现我们想要连接的雷电模拟器的5555端口目前没有连接只有emulator-5554被连接了此时我们需要关闭这个连接让5555端口连接上可以继续往下操作 执行端口号监控 不用特意明白下面两行代码什么意思只需要知道执行下面两行代码可以关闭5554端口连接上5555端口就行了 // adb -s 关闭的连接名 tcpip 指定连接的端口号
adb -s emulator-5554 tcpip 5555
// adb connect 连接的ip地址
adb connect 127.0.0.1查看效果
C:\Users\22560adb devices
List of devices attached
127.0.0.1:5555 device
emulator-5554 offline