Android Studio关于USB device not found的解决办法

Android Studio关于USB device not found的解决办法

我们使用Android Studio进行Android开发时,当我们使用真机进行调试时,很可能会出现USB device not found的问题。网上提出了很多决解办法,很多都是错误的。现给出正确的解决方法:

1. If yon don’t have Android SDK installed, please install it first.

2. Open Start menu. Select Android SDK Tools -> SDK Manager. Right-click on it and select “Run as Administrator”.

Running SDK Manager as Administrator is very important. If you just click on it, the SDK manager will start, but will encounter errors when you try to install new components!

3. In the SDK Manager select “Extras->Google USB Driver”. Enable the checkbox and click “Install 1 Package”.

4. When the Google USB driver is installed, plug in your device.

Warning: The driver won’t install automatically. We will do it manually in the next steps.

5. Open the System Properties dialog (press Win+Break on the keyboard or locate “Computer” in Start Menu, right-click on it and select “Properties”.

6. Click on the “Device Manager” link.

7. In the Device Manager locate your Android device. Then right-click on it and select “Update Driver Software”.

8. Select “Browse my computer for driver software”.

9. Select “Let me pick from a list of device drivers on my computer”.

10. Select “Show All Devices”.

11. Press the “Have Disk” button.

12. Enter the path to the Google USB driver. Normally it is located in the following directory:

C:\Program Files (x86)\Android\android-sdk\extras\google\usb_driver

13. Select “Android ADB Interface” from the list of device types.

14. Confirm the installation of the driver by pressing “Yes”.

15. Confirm the installation again by pressing “Install”.

16. When the installation is done, press “Close”.

版权声明:本文为博主原创文章,未经博主允许不得转载。

时间: 2024-10-08 02:42:30

Android Studio关于USB device not found的解决办法的相关文章

Android Studio关于USB device not found的解决的方法

Android Studio关于USB device not found的解决的方法 我们使用Android Studio进行Android开发时.当我们使用真机进行调试时.非常可能会出现USB device not found的问题.网上提出了非常多决解办法.非常多都是错误的.现给出正确的解决方法: 1. If yon don't have Android SDK installed, please install it first. 2. Open Start menu. Select An

Android Studio 找不到夜神模拟器的解决办法

Android Studio 找不到夜神模拟器的解决办法 1.启动夜神模拟器 2.找到你电脑上的夜神安装目录,在bin目录下打开cmd窗口,运行命令 nox_adb.exe connect 127.0.0.1:62001 当然你可以将夜神安装的bin目录配置到电脑的系统环境变量中,以后就省的找寻这个目录了 3.发现设备,可以开始安装调试 原文地址:https://www.cnblogs.com/dlm17/p/12346719.html

Android studio 安装中遇到一些问题的解决办法,分享一下

从eclipse转到android studio也是很无耐,刚开始总是会遇到很多难题,但是都不要轻言放弃. 以下是我遇到的问题,并通过搜索引擎找到的解决办法,善用工具,善用头脑,勿为伸手之人. Android Studio需要JDK 1.7+才可以安装,不过这个时候也要升级到1.7了. 安装完成之后第一次启动的时候会首先显示Fetching Android SDK component information,等一会儿在Setup Wizard - Downloading Components界面

android studio 出现unsupported modules detected 错误的解决办法

在从服务器拉取了工程导入android studio 时,出现了unsupported modules detected错误,导致无法运行和启动应用 在google后,找到解决方法 方法一: File -> Invalidate Caches / Restart -> Invalidate Caches & Restart. 然后就好了 方法二: 上个方法无效后,可尝试

Android Studio 创建虚拟机失败 Failed to load 解决办法

Name: Nexus_S_API_21 CPU/ABI: ARM (armeabi) Path: H:\Users\Pavkoo\.android\avd\Nexus_S_API_21.avd Error: Failed to parse properties from H:\Users\Pavkoo\.android\avd\Nexus_S_API_21.avd\config.ini 导致原因: Android Studio 安装 和 Sdk的安装位置不在同一个盘符下面,要么都在C盘,要么都

Eclipse Android项目导入Android Studio时常见的编译错误及解决办法

现在最新的Android Studio对以前的基于Eclipse ADT的项目的支持已经很好了,一般情况只需要通过File-> Import 导入项目就行了,但有些项目编译时会出现问题,现在把这些问题汇总记录下: NinePatch(.9.png)图片的问题 如果某个图片命名成了.9.png,实际图片并不是Ninepatch格式的,或格式错误,会编译出错,解决办法是按Ninepatch格式修改图片 android studio 非法字符: \65279 Error:(1, 10) 错误: 需要c

android studio Cannot resolve symbol '@drawable/XXX'等问题解决办法

方法1."Build " -> "Clean project" 方法 2."Tools" -> "Android" -> "Sync Project with Gradle Files" 方法3. updated your SDK manager. 不知道大家遇到是怎么解决的,方法2对我有用. android studio Cannot resolve symbol '@drawable/

Visual Studio C++ “无法生成cmd ” 问题的解决办法

刚刚装了win8.1,发现Visual Studio2008装好后,C++控制台程序居然无法生成cmd. 原因不明,这里只给出解决办法: 点击VS菜单[工具]下的[选项],选择[项目和解决方案]下的[VC++目录],增加如下3个环境变量(直接输入即可). 这样再编译运行就可以了. $(SystemRoot)\System32 $(SystemRoot) $(SystemRoot)\System32\wbem Visual Studio C++ "无法生成cmd " 问题的解决办法,布布

Android intent 传值不更新的原因和解决办法

当 Activity 的启动模式是 singleTask 或者 singleInstance 的时候.如果使用了 intent 传值,则可能出现 intent 的值无法更新的问题.也就是说每次 intent 接收到的值都是第一次接到的值.因为 intent 没有被更新.想要更新需要做两件事情. 1. 发送方 Activity,加上一句话 ? 1 PendingIntent pendingIntent = PendingIntent.getActivity(context,0,intent,Pen