在Win7上具有Google驱动程序MTP的Nexus 7 ADB是否出现问题?

问题描述:

当与ADB Google驱动程序连接时,我的N7不在便携式设备中显示,并且我无法访问我的文件.如果我卸载ADB驱动程序(选中了delete drivers标志),则win7会重新安装自己的驱动程序,并且可以正常工作.

when connected with ADB Google driver my N7 doesn't show in Porable devices and I can't access my files. If I uninstall ADB driver (with delete drivers flag checked) win7 does reinstall of its own drivers and It work.

我想使用N7进行开发,但也想传输我的文件,是否有任何解决方法,还有其他人遇到相同的问题吗?

I would like to use my N7 for development but also would like to transfer my files, is there any workaround, and has anyone else come across same issue?

感谢您的帮助.

  1. 下载USB驱动程序-适用于Windows的Nexus 7 USB驱动程序(
  1. Download USB driver - Nexus 7 USB driver for Windows (Link)
  2. Run Device Manager
  3. reconnect the Nexus tablet -> Select Android Phone (or other name you device)
  4. Click right mouse button -> update
  5. Select you download driver
  6. Install

在consol Windows中-> adb设备

In consol Windows -> adb devices

答案:

连接的设备列表

xxxxx设备

传输文件:

"adb push"将文件或文件夹从本地系统复制到远程仿真器或设备.

The "adb push " copies a file or folder from the local system to the remote emulator or device.

"adb pull"将文件或文件夹从远程仿真器或设备复制到本地系统.

The "adb pull " copies a file or folder from the remote emulator or device to the local system.

信息链接:

https://groups.google.com/forum/?fromgroups =#!topic/android-developers/0-RzE0v-G3k

http://www.herongyang.com/Android/adb-push-and -pull-Command.html