My device is not showing up in “Android Device Chooser” suddenly

倖福魔咒の 提交于 2019-12-03 11:19:04

问题


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.

  1. On the home screen of your device choose Menu > Settings > Applications > Development.
  2. 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

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!