解决android emulator-5554 disconnected的问题的方法

在Eclipse中直接运行android模拟器时,会经常遇到emulator-5554 disconnected无法连接的问题。

解决方案有二:

1、通过将android_sdk安装目录下的tools目录加入系统环境变量,然后直接运行命令emulator -avd (name)来启动android模拟器。

在Eclipse开发环境中,配置好android工程后,点击Run->Run,便会找到现存的模拟器,并将.apk文件上载到该模拟器中运行。

2、通过将android_sdk安装目录下的platform-tools目录加入系统环境变量,然后直接运行命令adb kill-server,和adb start-server,

也能够解决emulator-5554 disconnected无法连接的问题。

开发环境:Eclipse 3.6,jdk1.6.0_26,android 2.3.3,android sdk installer_r12-windows。

你可能感兴趣的:(android,develop)