热门标签 | HotTags
当前位置:  开发笔记 > 编程语言 > 正文

AndroidStudio未检测到Nexus7-AndroidStudioisnotdetectingNexus7

IamusingAndroidStudio1.1.0underWindows8.1ProandtryingtoconnectmyNexus7runningAndro

I am using Android Studio 1.1.0 under Windows 8.1 Pro and trying to connect my Nexus 7 running Android version 5.1.

我在Windows 8.1 Pro下使用Android Studio 1.1.0并尝试连接运行Android 5.1版的Nexus 7。

I am following both Lynda tutorial and looking at android developers tutorials but was not able to find what's wrong.

我正在关注Lynda教程并查看android开发人员教程,但未能找到错误。

The device is visible in the Device Manager:

设备在设备管理器中可见:

enter image description here

The Google USB driver has been installed:

已安装Google USB驱动程序:

enter image description here

I have enabled a lot of Developer options of my Nexus 7 including:

我启用了Nexus 7的很多开发者选项,包括:

  • USB debugging
  • Stay awake
  • Bug report shortcut
  • Bug报告快捷方式

I am not seeing the details when I try either to run or debug the application. The device is not listed here (as shown in the video):

当我尝试运行或调试应用程序时,我没有看到详细信息。此处未列出该设备(如视频中所示):

enter image description here

I have try to:

我试着:

  • add android:debuggable="true" in AndroidManifest.xml
  • 在AndroidManifest.xml中添加android:debuggable =“true”

  • restart the PC
  • 重启电脑

  • reconnect the device
  • 重新连接设备

I was not able to find Unknown sources option in the Developer options which was recommended in some other answers of this issue.

我无法在开发人员选项中找到未知来源选项,这是在此问题的其他一些答案中推荐的。

Could you advice what to try?

你能建议尝试一下吗?


enter image description here

4 个解决方案

#1


0  

Click Revoke USB debugging authorization in Developer option and try it again.

单击“开发人员”选项中的“撤消USB调试授权”,然后重试。

Go to Settings -> Usb Connectivity -> Usb connection mode -> Check MTP mode.

转到设置 - > Usb连接 - > Usb连接模式 - >检查MTP模式。

And try sudo adb devices.

并尝试sudo adb设备。

#2


0  

I suggest re-installing your ADB Drive in the Android SDK file and making sure your device is in Debugging mode.

我建议您在Android SDK文件中重新安装ADB驱动器,并确保您的设备处于调试模式。

#3


0  

I have decided to change my OS and install Ubuntu 15.04 instead. After I installed the Android Studio what I needed to do was to simply connect my Nexus 7 with my computer - the studio detected it immediately - no additional drivers and settings were needed at all.

我决定改变我的操作系统并安装Ubuntu 15.04。安装Android Studio之后我需要做的就是简单地将Nexus 7连接到我的计算机 - 工作室立即检测到它 - 根本不需要额外的驱动程序和设置。

#4


0  

Go to developer settings and change USB-mode to Charging. Solution for Android M.

转到开发人员设置并将USB模式更改为“正在充电”。 Android M.的解决方案


推荐阅读
  • 使用TabActivity实现Android顶部选项卡功能
    本文介绍如何通过继承TabActivity来创建Android应用中的顶部选项卡。通过简单的步骤,您可以轻松地添加多个选项卡,并实现基本的界面切换功能。 ... [详细]
  • Android与JUnit集成测试实践
    本文探讨了如何在Android项目中集成JUnit进行单元测试,并详细介绍了修改AndroidManifest.xml文件以支持测试的方法。 ... [详细]
  • 在尝试使用 Android 发送 SOAP 请求时遇到错误,服务器返回 '无法处理请求' 的信息,并指出某个值不能为 null。本文探讨了可能的原因及解决方案。 ... [详细]
  • 处理Android EditText中数字输入与parseInt方法
    本文探讨了如何在Android应用中从EditText组件安全地获取并解析用户输入的数字,特别是用于设置端口号的情况。通过示例代码和异常处理策略,展示了有效的方法来避免因非法输入导致的应用崩溃。 ... [详细]
  • Maven + Spring + MyBatis + MySQL 环境搭建与实例解析
    本文详细介绍如何使用MySQL数据库进行环境搭建,包括创建数据库表并插入示例数据。随后,逐步指导如何配置Maven项目,整合Spring框架与MyBatis,实现高效的数据访问。 ... [详细]
  • 本文介绍了SIP(Session Initiation Protocol,会话发起协议)的基本概念、功能、消息格式及其实现机制。SIP是一种在IP网络上用于建立、管理和终止多媒体通信会话的应用层协议。 ... [详细]
  • 一、Advice执行顺序二、Advice在同一个Aspect中三、Advice在不同的Aspect中一、Advice执行顺序如果多个Advice和同一个JointPoint连接& ... [详细]
  • spring boot使用jetty无法启动 ... [详细]
  • 本文详细介绍了如何正确设置Shadowsocks公共代理,包括调整超时设置、检查系统限制、防止滥用及遵守DMCA法规等关键步骤。 ... [详细]
  • flea,frame,db,使用,之 ... [详细]
  • 本文详细介绍如何在 Apache 中设置虚拟主机,包括基本配置和高级设置,帮助用户更好地理解和使用虚拟主机功能。 ... [详细]
  • 本文探讨了Python类型注解使用率低下的原因,主要归结于历史背景和投资回报率(ROI)的考量。文章不仅分析了类型注解的实际效用,还回顾了Python类型注解的发展历程。 ... [详细]
  • 如何将955万数据表的17秒SQL查询优化至300毫秒
    本文详细介绍了通过优化SQL查询策略,成功将一张包含955万条记录的财务流水表的查询时间从17秒缩短至300毫秒的方法。文章不仅提供了具体的SQL优化技巧,还深入探讨了背后的数据库原理。 ... [详细]
  • 本文介绍了如何通过C#语言调用动态链接库(DLL)中的函数来实现IC卡的基本操作,包括初始化设备、设置密码模式、获取设备状态等,并详细展示了将TextBox中的数据写入IC卡的具体实现方法。 ... [详细]
  • Logging all MySQL queries into the Slow Log
    MySQLoptionallylogsslowqueriesintotheSlowQueryLog–orjustSlowLog,asfriendscallit.However,Thereareseveralreasonstologallqueries.Thislistisnotexhaustive:Belowyoucanfindthevariablestochange,astheyshouldbewritteninth ... [详细]
author-avatar
暗罗华怡
这个家伙很懒,什么也没留下!
PHP1.CN | 中国最专业的PHP中文社区 | DevBox开发工具箱 | json解析格式化 |PHP资讯 | PHP教程 | 数据库技术 | 服务器技术 | 前端开发技术 | PHP框架 | 开发工具 | 在线工具
Copyright © 1998 - 2020 PHP1.CN. All Rights Reserved | 京公网安备 11010802041100号 | 京ICP备19059560号-4 | PHP1.CN 第一PHP社区 版权所有