Dell Streak:将其设置为在 Eclipse 中使用
我刚刚获得 Dell Streak 并将其更新至 Android 2.2。
我在 Android 等上安装了 Eclipse,并将其与其他 Android 手机一起使用。
但是,当我插入 Dell streak 并打开 USB 调试时。 Eclipse 中什么也没有出现。
是因为它选择了 Dell Streak 设备并且没有安装 ADB 驱动程序吗?
I have just got my Dell Streak and updated it to Android 2.2.
I got Eclipse setup with Android etc and have used it with other android phones.
However when I plug in my dell streak and turn on USB debugging. Nothing comes up in Eclipse.
Is it because its picked up the device as a Dell Streak and not installed a ADB driver?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(4)
您似乎缺少 Dell streak 的驱动程序。查看 Android 开发人员网站,获取不同 OEM 驱动程序的链接 http://developer.android.com /sdk/oem-usb.html
It seems you are missing the driver for dell streak. Check out the android developer site for links to different OEM drivers http://developer.android.com/sdk/oem-usb.html
如果您将手机插入计算机并处于调试模式。您是说当您尝试在 Eclipse 中运行您的应用程序时,您没有看到您的手机出现在 AVD 中吗?
如果您安装了 Android SDK 并且正确配置了 Eclipse,您应该能够看到您的手机。
尝试一下,让我们知道您会得到什么。如果找不到 ddms,则说明路径设置不正确。
您应该获得 Dalvik 调试监视器,并且您的手机应该显示在右上角窗口中。
如果没有,您的手机可能需要进行一些配置。例如,HTC 手机需要 Linux 中的 USB 权限验证文件。
If you have your phone plugged into your computer and in debug mode. Are you saying you don't see your phone come up in AVD when you try to run your app in Eclipse??
If you have the Android SDK installed and Eclipse configured correctly you should be able to see your phone.
try this and let us know what you get. If you can't find ddms you don't have your path set correctly.
You should get Dalvik Debug Monitor and your phone should show up in the upper right corner window.
If not, your phone may have to be config'd a bit. As an example HTC phones need a USB Permissions auth file in Linux.
听起来确实是驱动问题。您安装了戴尔PC套件吗?我很确定这样做会安装您需要的驱动程序。
否则,您应该能够在其他地方自行获取驱动程序。本教程用于安装自定义 ROM,但第一部分介绍为 Streak 安装 ADB 驱动程序
http:// streakdroid.com/?page_id=78
希望有帮助。
It does sound like it's a driver issue. Have you installed Dell PC Suite? I'm pretty sure that doing so will install the driver you need.
Otherwise, there you should be able to get the driver by itself elsewhere. This tutorial is for installing a custom ROM, but the first part walks through installing the ADB driver for the Streak
http://streakdroid.com/?page_id=78
Hope that helps.
首先,如果你想检查设备是否已连接,你应该在命令提示符下运行
adb devices
,这将列出所有设备(包括模拟器,如果连接) 。其次,这里是android sdk详细信息,从中您可以轻松找到足够的信息有关以下信息:
设置开发设备
,First, If you want to check whether the device is attached or not, you should run
adb devices
at the command prompt which will list all the devices(including emulator if connected).Second, Here is the android sdk detail, from where you will easily find out enough information on:
Setting up a Device for Development
,