这个算是比较全的配置了(jdk+eclip+android sdk)

http://www.hzlitai.com.cn/article/ARM11/SYSTEM/android.html

 

出现一个问题。。

Cannot complete the install because one or more required items

could not be found Software being installed: Android Development Tools

 

试试这个

http://code.google.com/intl/sv-SE/eclipse/docs/install-eclipse-3.5.html

还是不行。。看来老的eclipse是真不能用了,到官网上载了个最新的eclipse indigo 3.7好像。

接下来就可以了。

 

在创建helloworld,RUN的时候又出了一个错。

android的一个项目 出错,错误信息如下:Error generating final archive: Debug certificate expired on 

解决方法: 


删除C:\Documents and Settings\Administrator\.android\目录下的debug.keystore及ddms.cfg 



原因分析: 

android要求所有的程序必须有签名,否则就不会安装该程序。在我们开发过程中,adt使用debug keystore,在 preference->android->buid中设置。debug的keystore默认有效期为一年,如果你是从一年前开始完android程序,那么在一年后导入这个app的时候很可能出现debug keystore过期,导致你无法生成 apk文件。 

此时你只要删除debug keystore就行,系统又会为你生成有效期为一年的私钥。