问题
i am using my samsung galaxy3 device for testing my apps from last two months. It is working fine. But suddenly from this morning when i connected my device to my system it is not showing up in the "Android Device chooser" window. I have checked, USB debug mode is in checked state only in my device.
Can anybody guess the problem. It is little urgent.
Thanks, Nehatha
回答1:
Use a shell of some sort (Run -> cmd) and browse to the /platform-tools/ directory inside the place you installed the Android SDK Tools.
Shut down Eclipse, unplug your device and try running:
adb kill-server
adb start-server
Plug it back in and run
adb devices
If you can see it, good. Now run:
adb logcat -c
adb logcat
This will flush the current logcat output and then show the logcat output in the shell as it updates (do something on the device and the log will update). Stop it with Ctrl-C and restart Eclipse.
This has helped for me sometimes.
Also, rebooting helps.
I have another similar issue over here which I haven't found an answer to yet: Device going offline randomly (and appearing multiple times as offline) in Eclipse - fixes?
Hope some of it helps.
回答2:
I have the same problem and I figured out the solution for me.
- On the home screen of your device choose Menu > Settings > Applications > Development.
- Make sure that ‘USB debugging’ is checked.
Hope it will help someone :)
回答3:
close the emulator then restart eclipse.
回答4:
Finally my device is working after "Factory data Reset".
Thanks you all for your suggestions, even those suggestions not worked for me, I came to know about other useful.
Thank You.
回答5:
I had similar issue, what worked for me was switching to "connected as camera" mode instead of "connected as media device" from the USB options menu, then performing Klaus's solution (kill server, start server).
来源:https://stackoverflow.com/questions/5178014/my-device-is-not-showing-up-in-android-device-chooser-suddenly