I have a HP Slate 21 that is connected to my Windows box using a USB cable.

设备上已打开USB调试开关。

将正确的%SingleAdbInterface%和%CompositeAdbInterface%条目添加到android_winusb。inf文件,我现在看到“Android ADB接口”在我的设备管理器。 但是,在命令行中运行adb devices不会显示设备。

我还有一款惠普7系列产品,在adb设备下显示得很好。

我从设备管理器中看到的唯一区别是,一个是“Android复合ADB接口”,另一个是“Android ADB接口”。

还有一个微妙的区别。在winusb中。inf文件,对于Slate 7,我有两个%CompositeAdbInterface%条目定义,但对于Slate 21,只有一个%CompositeAdbInterface%条目定义。

如何使用adb devices命令查看我的设备?


当前回答

不管怎样,我在Windows7电脑上安装ADB驱动程序时遇到了问题。原来病毒扫描“访问保护”阻止(仅部分)驱动程序正确安装。拔下USB,从设备管理器中卸载三星设备,禁用VS访问保护,重新插入USB,一切正常。浪费了一个小时,希望能帮你省下一个小时。

其他回答

虽然这些解决方案中有许多在过去对我有效,但在我今天使用三星S7的Mac电脑时,它们都失败了。在尝试了几根电缆后,有人建议ADB连接需要正式的三星电缆才能工作。事实上,当我使用三星电缆时,ADB工作得很好。我希望这能帮助到其他人!

所以上面提到的方法对我没用。对我来说,有用的是在谷歌上搜索三星Galaxy Tab USB驱动程序,下载并运行应用程序,让我的设备在我使用adb设备时得到识别。因为我用的是三星Galaxy,所以我用这个链接从三星官方网站下载了usb驱动程序。你会想谷歌自己的android型号usb驱动程序

http://www.samsung.com/us/support/owners/product/SCH-I925EAAVZW

After downloading it, I ran the application to install my usb driver and then did adb devices. Make sure your Google USB driver from the Android SDK is downloaded and that your sdk is up to date as well. Also, make sure that your USB debugging mode is enable by going to Settings -> Developer Options -> then checking USB debugging. After all this, your device in the Device Manager should not have a yellow exclamation point next to it. When you run adb devices your device should show up. Hope this helps people. I literally spent hours trying to figure this out. Hopefully my answer could save you guys the hours I spent googling.

不管怎样,我在Windows7电脑上安装ADB驱动程序时遇到了问题。原来病毒扫描“访问保护”阻止(仅部分)驱动程序正确安装。拔下USB,从设备管理器中卸载三星设备,禁用VS访问保护,重新插入USB,一切正常。浪费了一个小时,希望能帮你省下一个小时。

我遇到过类似的问题,并通过以下步骤解决了问题:

Disconnect device, and ensure to turn off developer options on the android device (if was previously turned on). Connect the device via USB. Turn on developer options on the android device. Enable check box for stay awake. Enable check box for USB debugging. Open cmd (or MacOS' console), and cd where your adb executable is. Should be in SDK's platform-tools, which you can get from official-site: https://developer.android.com/studio. Finally, run the commands: adb kill-server adb start-server adb devices

现在我们可以看到附加设备。

请注意,通过执行上述步骤,在大多数情况下,usb连接模式将自动设置为MTP(媒体传输协议),但如果它没有自动发生,请尝试手动设置。 此外,如果上述步骤对您不起作用,请尝试购买新的usb电缆,然后重试上述步骤(使用“新的usb电缆”)。

我在这条线上尝试了所有的方法,但都没用。我的问题是:当我连接电缆时,我的电脑正在给设备充电,所以我以为电缆是工作的,但不是。交换电缆后,adb设备工作正常。电报是问题所在。