11

Lonovo does not appear to provide any drivers for the ADB Interface and Google's USB Drivers do not support the Lenovo IdeaPad. How do I get the ADB Interface installed?

4

1 回答 1

17

您首先需要 IdeaPad 的设备 ID。您可以在设备管理器中找到这些,方法是右键单击“其他设备”下的“IdeaPad S6000”。选择“详细信息”选项卡并选择“硬件 ID”属性。就我而言,这是两个值(尽管在线搜索这些步骤会导致许多其他细微变化):

USB\VID_17EF&PID_75E0&REV_0255&MI_01
USB\VID_17EF&PID_75E0&MI_01

然后使用Android-SDK ( andriod-sdk/extras/google/usb_driver) 中的 Google USB Drivers 查找文件android_winusb.inf。为设备驱动程序定义了两个部分,一个(第一个)用于 32 位操作系统 ( [Google.NTx86]),另一个用于 64 位操作系统 ( [Google.NTamd64])。您将看到一系列 Google 参考设备(Nexus One、Nexus Q 等)。在这些设备的末尾添加以下三行:

;IdeaTab S6000
%CompositeAdbInterface%     = USB_Install, USB\VID_17EF&PID_75E0&REV_0255&MI_01
%CompositeAdbInterface%     = USB_Install, USB\VID_17EF&PID_75E0&MI_01

保存并退出,然后尝试安装 Google OEM USB 驱动程序。设置好硬件 ID 后,Windows 7 应该会识别驱动程序,然后再识别设备。我已经在我的 Windows 7 桌面上对此进行了测试,现在 Appcelerator Titanium 和我的 Android Jelly Bean 平板电脑可以完美地结合在一起 :) 我希望这可以帮助其他人。

于 2013-07-29T18:51:36.527 回答