Eclipse does not recognize my Android tablet

2020-07-22 04:46发布

I'd like to start by saying that I've been using Eclipse with an Android (v2.2) phone with no problems.

Today I bought a Samsung Galaxy Tab 10.1 (Android 3.1) but Eclipse does not recognize it. Windows is aware of the device but Eclipse is not. I have installed the latest USB drivers, I can access the tablet as a storage device, the tablet is set to USB debugging mode and the tablet shows a "USB Debugging" notification when I plug it in. However it never shows up in the DDMS view in Eclipse and I cannot install or debug apps on it from Eclipse.

Any help is much appreciated.

Barry

标签: android
12条回答
三岁会撩人
2楼-- · 2020-07-22 05:00

Enable USB debugging on your device.

On most devices running Android 3.2 or older, you can find the option under Settings > Applications > Development. On Android 4.0 and newer, it's in Settings > Developer options.

Note: On Android 4.2 and newer, Developer options is hidden by default. To make it available, go to Settings > About phone and tap Build number 7 times. Return to the previous screen to find Developer options.

查看更多
劳资没心,怎么记你
3楼-- · 2020-07-22 05:02

I think you need to install Android 3.1 SDK and install the eclipse classic plugins as well. I have been using Samsung Galaxy with eclipse from quite some time now. Hope this helps.

查看更多
Luminary・发光体
4楼-- · 2020-07-22 05:03

First of all, its not eclipse who is not recognizing your device. Its ADB - android debug bridge. Usually you can check whether device is visible to ADB via console/terminal using adb devices (adb is an executable located at $ANDROID_SDK/platform-tools).

Also, even if Windows sees your device as USB device, it doesn't mean it sees it as ADB compatible device. These are usually two different drivers. Make sure you've installed correct ADB drivers for your device.

查看更多
我只想做你的唯一
5楼-- · 2020-07-22 05:03

Had the same problem, with my Samsung Galaxy Y Duos. It was perfectly working fine.. we could debug.

Stopped working/ not recognizable, after reinstalling the OS, Eclipse etc.

Here's a FIX that might work:

  1. Go to Android SDK Manager.
  2. Delete /Uninstall the USB drivers.
  3. Reconnect your mobile /tablet.
  4. The appropriate drivers will be installed automatically.
  5. Your Eclipse could identify your device... Your device is ready for debug.

SSS Solutions www.s3s.co.in

查看更多
迷人小祖宗
6楼-- · 2020-07-22 05:03

I did the following for a Galaxy Note 10.1:

  • Install the Kies driver set available from Samsung as described above.
  • to Set the Galaxy Note's USB Debugging on.
  • Set the Galaxy Note to Camera Mode in the USB menu after plugging in the USB cable to PC.
  • Run CMD window and manually run "adb usb" from the android-v4 directory
  • CMD run "adb devices" and the Note showed up as:

"List of devices attached

4107001b9836affb device"

Now when I hit "run" in eclipse, I see "samsung-gt_n8013-4107001..." as a target device.

Hope this helps.

查看更多
forever°为你锁心
7楼-- · 2020-07-22 05:04

Here is the way I solved this problem.

  1. Connect your tablet to PC
  2. PC will show Popup for new Hardware device found. On tab click on USB symbol (visible near time field.
  3. On click on this USB symbol it will show "Connected as Media device". Change that setting to "Camera"
  4. Now run adb devices command in command prompt, it will show tab there
查看更多
登录 后发表回答