android日常问题及解决方案

问题一描述:

 Please ensure that adb is correctly located at 'F:\AndroidManager\android\platform-tools\adb.exe' and can be executed.

原因及解决方案:

查看任务管理器,关闭所有adb.exe

重启eclipse即可

问题二描述:

 

Activity not started, its current task has been brought to the front

原因及解决方案:

 

模拟器中还有东西在运行,也就是你要运行的activity已经有一个在模拟器中运行了不要以为你的模拟器退出到桌面了就没有东西在跑了。在你调试的时候异常关闭的程序有可能就有activity在运行。

 

解决方法:在Eclipse中,“project”-->“clean…”

 

问题三描述;

 this android sdk requires android developer toolkit version 10.0.0 or above.

current version is 8.0.1.v201012062107-82219.

please update adt to the latest version

android日常问题及解决方案

 

Eclipse的android开发插件版本过低,应该下载ADT-10.0.0,并且

 

  1. 启动 Eclipse, 然后进入 Help > Install New Software.

 

  2. 点击“already installed?"链接,在弹出的界面中选中ADT8.0.1的组件,点击“Update”

      3.将低版本的每个组件更新后就OK了。

 

你可能感兴趣的:(android)