课程概要:android环境的搭建主要有以下三步:
1.android SDK的安装
2 .ADT的安装和配置
3.android模拟器的配置
Additional information:
如果你还没有JDK的话,可以去这里下载,接下来的工作就是安装提示一步一步走。设置环境变量步骤如下:(一般做java开发的一般都有了,哈哈,我用的是1.7)
安装完成之后,可以在检查JDK是否安装成功。打开cmd窗口,输入java –version 查看JDK的版本信息。出现类似下面的画面表示安装成功了:
1.在上边的链接地址下载adt-bundle-windows-x86-20130219.zip集成开发包
2.解压,打开eclipse/运行eclipse.exe
3.选择 windows -》android SDK Manager -》下载相应的版本。如android2.3的镜像文件;因为我已经安装完了,如下图:下图的安装的时候都得选上。根据自己的需求,下载不同的包。
4.配置模拟器
启动eclipse --》window--》android virtual Device Manager 下面的操作按图走:
选择 -》New---》按照下面的填写,其中的target这一项不是手动填写,它的版本取决于第三步你所选择的下载版本,我的是android4.2.2(API17)所以target‘这里显示的是android 4.2.2 -API17
5.点击ok --》出现下图:选择refresh -》在选择start 即可
6.新建一个工程(和老版本的没有区别)
这里引用官方文档的步骤:
As new versions of Android become available, you should test your app on the new version and update this value to match the latest API level in order to take advantage of new platform features.
Click Next.
You can customize an icon in several ways and the tool generates an icon for all screen densities. Before you publish your app, you should be sure your icon meets the specifications defined in the Iconography design guide.
Click Next.
For this project, select BlankActivity and click Next.
9.运行结果:证明环境答对了。