Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
这篇文章描述了如何通过 WiFi 打开和关闭调试。有没有办法为此检测当前状态?我想我需要获取 service.adb.tcp.port 的当前值并检查它是否等于-1。但是如何获得这个值呢?
要通过 wifi 进行调试,您需要将您的设备(手机/平板电脑)连接到与您的 PC 相同的网络。从设置 -> WiFi 的高级菜单中获取设备的 IP。然后使用它连接到设备:
adb connect deviceip
现在,当您使用 时adb devices,您应该会看到类似deviceip:5555 device.
adb devices
deviceip:5555 device
更新:要真正回答您的问题:要获得您正在寻找的价值,只需使用以下内容:
adb shell getprop service.adb.tcp.port