终于用ADB连上平板了

可以看到设备管理器里, ADB Interface 设备装不上驱动。

1,百度到的内容,没有一个靠谱的。

2,google到内容了, 却因为看的不仔细,浪费了好多时间。。。(android自己的文章都是有问题的)

下面的才是正确的,注意红字!!!

Step 1: Download Android SDK: Android SDK download link

Scroll to the bottom of the page linked above, then click on “Download for other platforms”. From there, you can download the zip version as well as the exe installer. File names will be like:

  • Zip Package for Windows: android-sdk_r21.0.1-windows.zip
  • SDK Installer for Windows: installer_r21.0.1-windows.exe

Download the one of your choice.

Step 2: If you downloaded the zip package, extract it to a convenient location. If you downloaded .exe installer, install it on your PC.

For this guide, we extracted the zip file to D:\ drive. Upon extracting, it will create a directory named android-sdk-windows.

Step 3: Open the android-sdk-windows directory and run the SDK Manager.exe. It will fetch all the packages for you, wait till it’s done.

From here, you can install or delete the packages.

Step 4: Select following packages to install:

  • Android SDK Platform-tools
  • Google USB Driver

After selecting the packages and unchecking all other options, click “Install 2 packages…” button at bottom right.

Step 5: A window will appear asking for confirmation. Select “Accept All” option and click on “Install” button to continue.

The selected packages will now be downloaded and installed. Be patient. After it’s done, you will see the confirmation message in SDK Manager.

Step 6: Now connect your device to the computer. You will notice drivers getting installed, which will eventually fail. Don’t worry.

Step 7: Open Device Manager and locate your device under “Other devices”.

Step 8: Right click on your device and then click on “Update driver software”.

Step 9: Now click on “Browse my computer for driver software” option.

Step 10: In next screen, click on the option “Let me pick from a list of device drivers on my computer”.

Step 11: Now select “Show All Devices” option and click the next button.

Step 12: Now click on “Have Disk…” button. A window will pop up, click the browse button and browse to following location: D:\android-sdk-windows\extras\google\usb_driver and select android_winusb.inf file.

Note: If you installed / extracted the Android SDK to a different location, browse to that location instead of D:\.

Step 13: In next screen, select “Android Composite ADB Interface” and click the “Next” button.

原文连接:

http://donandroid.com/how-to-install-adb-interface-drivers-windows-7-xp-vista-623

时间: 2024-10-10 22:58:39

终于用ADB连上平板了的相关文章

终于在CoderForce冲上紫色了(Round #258, Div. 2)

一个多月来历尽艰难, 终于冲上了紫色. 17 Codeforces Round #258 (Div. 2) 93 3 +76 1751 Became Candidate Master htbb → htbb 16 Codeforces Round #257 (Div. 2) 200 3 +165 1675   15 Codeforces Round #256 (Div. 2) 1797 1 -98 1510   14 Codeforces Round #FF (Div. 2) 625 2 -88

当有多个device链接时,如何使用adb链接上自己想要链接的device

在我们平时使用adb工具时,可能会遇到这样的问题,当电脑中链接了多个设备时,单纯的使用adb shell链接设备时,会出现报错的情况.下面我们来具体说下,遇到这样的情况应该如何处理: 1.首先我们需要知道链接在电脑上的设备分别有哪些.使用如下命令即可返回device list adb devices -l 命令行就会返回当前链接的设备的名称和deviceID 2.在使用adb shell命令时,需要加上选项即可链接上相关设备 adb -s  deviceID shell     (链接设备) d

google终于把ADB输出的回车换行问题改掉了

google改动内容在这儿,没有测试过,看起来没问题. 到目前位置,市面上所有的Android设备,都存在这个这个小问题: 在Linux/Mac上执行adb命令输出什么东西时,就算是二进制输出,那么LF(0x0a)字符会被转换成CR(0x0d) + LF.Windows上更可笑,会变成CR+CR+LF. 这个很好验证: 从Android上抓一个文件下来,例如/default.prop, 看看里面应该只有LF(0x0a),而没有CR(0x0d)的. adb pull /default.prop  

Android Studio使用adb命令连接平板

有需要使用adb命令连接调试平板的同学可以参考下(下面是android官方文档,有点老). http://donandroid.com/how-to-install-adb-interface-drivers-windows-7-xp-vista-623 1.android studio 里安装google usb driver,安装完重启Android studio即可. 2.进入电脑设备管理器查看是否安装成功:截图显示是已经安装ok的.  3.找到sdk安装目录,在Android studi

创业有了它,我终于敢在合同上签字了!

李嘉诚说:没有律师的意见,我不敢在合同上签字.离开律师,我什么也做不了! 这句话乍听有些吓人,其实不然.律师就如同医生,医生并不是神仙,虽不能完全保证药到病除长命百岁,却可以对你的身体状况及时调整防范于未然.换做律师身上,这种作用就叫做防范法律风险. 要明确什么叫做"防范法律风险",首先要给"法律风险"一个定义.简单粗暴地讲,"法律风险"就是"事件本身违法的风险,以及与相对人(通常是合同相对方)之间商业关系破裂后引起的诉讼中,自己一方的

adb push命令的使用

最近刚接触一种工具(命令),什么命令呢?就是adb命令,对这个命令纯属一个小白鼠,什么都不懂,所以只能adb --help 一下参数,然后就尝试着使用. 今天遇到一个问题,需要将某个文件拷到小机上面,小机可以理解为手机或者平板电脑这种类似的机子,机子是跑安卓的.顿时就不知道怎么拷贝了.于是搜索了一番,从此就与adb打上交道了. 首先使用USB连接电脑与小机,然后安装adb相应的驱动,这是第一步,也是必须要做的. 进入doc系统后,敲入adb shell  可以进入linux命令行状态,说明adb

判断是平板还是电脑设备

你丫的,终于找到了JS在平板电脑上的事件!!! 源文地址:http://www.sunql.com/760.html iphone.ipod Touch.ipad触屏时的js事件 分r 1.Touch事件简介 pc上的web页面鼠标会产生onmousedown.onmouseup.onmouseout.onmouseover.onmousemove的事件,但是在移动终端如iphone.ipod Touch.ipad上的web页面触屏时会产生ontouchstart.ontouchmove.ont

采用CSS3 Media Query技术适应Android平板屏幕分辨率和屏幕像素密度

采用HTML5在开发移动应用程序满足各种需求Android分辨率和屏幕的平板设备密度,这是非常麻烦的过程,最终的解决方案是使用css media query,匹配相同的时间分辨率和屏幕像素密度.上进行兼容性測试,终于保证在多数Android平板上都能较好的显示. 一个典型的针对设备的Css Media Query写法例如以下.能够保证页面高度充满屏幕,简单的设置height:100%是不行的. //SAMSUNG N5100, Nexus7 1, @media only screen and (

前端菜鸡之路——网页上的图标

如何在页面上放置我们需要的图标,这个问题从我学习前端以来便一直伴随着我,从开始的全部用img标签来放图标到之后的用雪碧图,用字体,但是再多的方法也要懂得如何在不同的情形下去使用这些方法.所以刚在加班中过完圣诞的我坐在了电脑前,想要对这些熟悉而又陌生的东西进行整理和总结. 首先是从img标签说起,当我第一次切图时便和它邂逅,当时觉得好神奇,给它一个路径居然可以找到我想要的图片,并且展示出来,功能有点类似于快递员,于是我开始频繁的收各种快递,用到图片的地方都选择使用它.虽然这么做并不算错,但很显然不