Android的第一个程序运行

搭建了android的环境,第一步就是要运行一个helloworld了,相信各位跟我一样迫不及待了。但是在run as --》 android application的时候,出现了错误。

The connection to adb is down ,  and a servere  error has occured.

You must restart adb and eclipse.

Please ensure that ab is correctly located at "c:/Program Files/Android/android-sdk/platform-tools/adb.exe" and can be executed.

"

原因:发生这样的问题,是因为adb.exe 没有运行起来,或者说指定的路径下边没有改程序。


解决方法:

可以讲adb的路径添加到环境变量path当中,也可以将adb的文件拷贝到告警所描述的platform-tools目录中。


如果上述还没有解决,那么在cmd.exe 当中手动运行adb start-server   或者 adb.exe kill-server


如果仍然不能够运行的话,那么说明豌豆荚这个后台程序,在运行,并占用了一定的内容,因此删除该程序的后台即可!(这个问题找了很长时间。)

你可能感兴趣的:(c,android,application,Path)