前面Android开发之旅:环境搭建及HelloWorld,我们介绍了如何搭建Android开发环境及简单地建立一个HelloWorld项目,本篇将通过HelloWorld项目来介绍Android项目的目录结构。本文的主要主题如下:
- 1、HelloWorld项目的目录结构
- 1.1、src文件夹
- 1.2、gen文件夹
- 1.3、Android 2.1文件夹
- 1.4、assets
- 1.5、res文件夹
- 1.6、AndroidManifest.xml
- 1.7、default.properties
1、HelloWorld项目的目录结构
(这个HelloWorld项目是基于Android 2.1的)在Eclipse的左侧展开HelloWorld项目,可以看到如下图的目录结构:
下面将分节介绍上面的各级目录结构。
1.1、src文件夹
顾名思义(src, source code)该文件夹是放项目的源代码的。打开HelloWorld.java文件会看到如下代码:
HelloWorld.java
可以知道:我们新建一个简单的HelloWorld项目,系统为我们生成了一个HelloWorld.java文件。他导入了两个类android.app.Activity和android.os.Bundle,HelloWorld类继承自Activity且重写了onCreate方法。
以下说明针对没有学过Java或者Java基础薄弱的人
@Override
在重写父类的onCreate时,在方法前面加上@Override 系统可以帮你检查方法的正确性。例如,public void onCreate(Bundle savedInstanceState){…….}这种写法是正确的,如果你写成public void oncreate(Bundle savedInstanceState){…….}这样编译器回报如下错误——The method oncreate(Bundle) of type HelloWorld must override or implement a supertype method,以确保你正确重写onCreate方法。(因为oncreate应该为onCreate)
而如果你不加@Override,则编译器将不会检测出错误,而是会认为你新定义了一个方法oncreate。
android.app.Activity类:因为几乎所有的活动(activities)都是与用户交互的,所以Activity类关注创建窗口,你可以用方法setContentView(View)
将自己的UI放到里面。然而活动通常以全屏的方式展示给用户,也可以以浮动窗口或嵌入在另外一个活动中。有两个方法是几乎所有的Activity子类都实现的:
onCreate(Bundle):初始化你的活动(Activity),比如完成一些图形的绘制。最重要的是,在这个方法里你通常将用布局资源(layout resource)调用
setContentView(int)方法定义你的UI,和用
findViewById(int)在你的UI中
检索你需要编程地交互的小部件(widgets)。setContentView
指定由哪个文件指定布局(main.xml),可以将这个界面显示出来,然后我们进行相关操作,我们的操作会被包装成为一个意图,然后这个意图对应有相关的activity进行处理。onPause()
:处理当离开你的活动时要做的事情。最重要的是,用户做的所有改变应该在这里提交(通常ContentProvider
保存数据)。
更多的关于Activity类的详细信息此系列以后的文章将做介绍,如果你想了解更多请参阅相关文档。
android.os.Bundle类:从字符串值映射各种可打包的(Parcelable)类型(Bundle单词就是捆绑的意思,所有这个类很好理解和记忆)。如该类提供了公有方法——public boolean containKey(String key),如果给定的key包含在Bundle的映射中返回true,否则返回false。该类实现了Parceable和Cloneable接口,所以它具有这两者的特性。
1.2、gen文件夹
该文件夹下面有个R.java文件,R.java是在建立项目时自动生成的,这个文件是只读模式的,不能更改。R.java文件中定义了一个类——R,R类中包含很多静态类,且静态类的名字都与res中的一个名字对应,即R类定义该项目所有资源的索引。看我们的HelloWorld项目是不是如此,如下图:
通过R.java我们可以很快地查找我们需要的资源,另外编绎器也会检查R.java列表中的资源是否被使用到,没有被使用到的资源不会编绎进软件中,这样可以减少应用在手机占用的空间。
1.3、Android 2.1文件夹
该文件夹下包含android.jar文件,这是一个Java 归档文件,其中包含构建应用程序所需的所有的Android SDK 库(如Views、Controls)和APIs。通过android.jar将自己的应用程序绑定到Android SDK和Android Emulator,这允许你使用所有Android的库和包,且使你的应用程序在适当的环境中调试。例如上面的HelloWorld.java源文件中的:
import android.app.Activity;
import android.os.Bundle;
这里两行代码就是从android.jar导入包。
1.4、assets
包含应用系统需要使用到的诸如mp3、视频类的文件。
1.5、res文件夹
资源目录,包含你项目中的资源文件并将编译进应用程序。向此目录添加资源时,会被R.java自动记录。新建一个项目,res目录下会有三个子目录:drawabel、layout、values。
- drawabel-?dpi:包含一些你的应用程序可以用的图标文件(*.png、*.jpg)
- layout:界面布局文件(main.xml)与WEB应用中的HTML类同,没修改过的main.xml文件如下(HelloWorld的就没有修改过):
main.xml
- values:软件上所需要显示的各种文字。可以存放多个*.xml文件,还可以存放不同类型的数据。比如arrays.xml、colors.xml、dimens.xml、styles.xml
1.6、AndroidManifest.xml
项目的总配置文件,记录应用中所使用的各种组件。这个文件列出了应用程序所提供的功能,在这个文件中,你可以指定应用程序使用到的服务(如电话服务、互联网服务、短信服务、GPS服务等等)。另外当你新添加一个Activity的时候,也需要在这个文件中进行相应配置,只有配置好后,才能调用此Activity。AndroidManifest.xml将包含如下设置:application permissions、Activities、intent filters等。
如果你跟我一样是ASP.NET出生或者学过,你会发现AndroidManifest.xml跟web.config文件很像,可以把它类同于web.config文件理解。
如果你不是,你可以这样理解——众所周知xml是一种数据交换格式,AndroidManifest.xml就是用来存储一些数据的,只不过这些数据时关于android项目的配置数据。
HelloWorld项目的AndroidManifest.xml如下所示:
AndroidManifest.xml
关于AndroidManifest.xml现在就讲这么多,此系列后面的文章将单独详细介绍。
1.7、default.properties
记录项目中所需要的环境信息,比如Android的版本等。 HelloWorld的default.properties文件代码如下所示,代码中的注释已经把default.properties解释得很清楚了:
default.properties
http://www.zhiyin.cn/yx/bxdx/5226243.html |
http://www.zhiyin.cn/yx/bxdx/5226240.html |
http://www.zhiyin.cn/yx/bxdx/5226239.html |
http://www.zhiyin.cn/yx/bxdx/5226237.html |
http://www.zhiyin.cn/yx/bxdx/5226344.html |
http://www.zhiyin.cn/yx/bxdx/5226326.html |
http://www.zhiyin.cn/yx/bxdx/5226340.html |
http://www.zhiyin.cn/yx/bxdx/5226334.html |
http://www.zhiyin.cn/yx/bxdx/5226333.html |
http://www.zhiyin.cn/yx/bxdx/5226331.html |
http://www.zhiyin.cn/yx/bxdx/5226323.html |
http://www.zhiyin.cn/yx/bxdx/5226214.html |
http://www.zhiyin.cn/yx/bxdx/5226213.html |
http://www.zhiyin.cn/yx/bxdx/5226211.html |
http://www.zhiyin.cn/yx/bxdx/5226210.html |
http://www.zhiyin.cn/yx/bxdx/5226209.html |
http://www.zhiyin.cn/yx/bxdx/5226196.html |
http://www.zhiyin.cn/yx/bxdx/5226192.html |
http://www.zhiyin.cn/yx/bxdx/5226186.html |
http://www.zhiyin.cn/yx/bxdx/5226180.html |
http://www.zhiyin.cn/yx/bxdx/5226176.html |
http://www.zhiyin.cn/yx/bxdx/5226164.html |
http://www.zhiyin.cn/yx/bxdx/5226175.html |
http://www.zhiyin.cn/yx/bxdx/5226162.html |
http://www.zhiyin.cn/yx/bxdx/5226408.html |
http://www.zhiyin.cn/yx/bxdx/5226195.html |
http://www.zhiyin.cn/yx/bxdx/5226194.html |
http://www.zhiyin.cn/yx/bxdx/5226191.html |
http://www.zhiyin.cn/yx/bxdx/5226188.html |
http://www.zhiyin.cn/yx/bxdx/5226187.html |
http://www.zhiyin.cn/yx/bxdx/5226185.html |
http://www.zhiyin.cn/yx/bxdx/5226179.html |
http://www.zhiyin.cn/yx/bxdx/5226165.html |
http://www.zhiyin.cn/yx/bxdx/5226158.html |
http://www.zhiyin.cn/yx/bxdx/5226254.html |
http://www.zhiyin.cn/yx/bxdx/5226242.html |
http://www.zhiyin.cn/yx/bxdx/5226238.html |
http://www.zhiyin.cn/yx/bxdx/5226233.html |
http://www.zhiyin.cn/yx/bxdx/5226231.html |
http://www.zhiyin.cn/yx/bxdx/5226401.html |
http://www.zhiyin.cn/yx/bxdx/5226400.html |
http://www.zhiyin.cn/yx/bxdx/5226294.html |
http://www.zhiyin.cn/yx/bxdx/5226288.html |
http://www.zhiyin.cn/yx/bxdx/5226281.html |
http://www.zhiyin.cn/yx/bxdx/5226280.html |
http://www.zhiyin.cn/yx/bxdx/5226279.html |
http://www.zhiyin.cn/yx/bxdx/5226276.html |
http://www.zhiyin.cn/yx/bxdx/5226274.html |
http://www.zhiyin.cn/yx/bxdx/5226249.html |
http://www.zhiyin.cn/yx/bxdx/5226248.html |
http://www.zhiyin.cn/yx/bxdx/5226247.html |
http://www.zhiyin.cn/yx/bxdx/5226244.html |
http://www.zhiyin.cn/yx/bxdx/5226241.html |
http://www.zhiyin.cn/yx/bxdx/5226236.html |
http://www.zhiyin.cn/yx/bxdx/5226234.html |
http://www.zhiyin.cn/yx/bxdx/5226229.html |
http://www.zhiyin.cn/yx/bxdx/5226306.html |
http://www.zhiyin.cn/yx/bxdx/5226302.html |
http://www.zhiyin.cn/yx/bxdx/5226286.html |
http://www.zhiyin.cn/yx/bxdx/5226285.html |
http://www.zhiyin.cn/yx/bxdx/5226284.html |
http://www.zhiyin.cn/yx/bxdx/5226283.html |
http://www.zhiyin.cn/yx/bxdx/5226208.html |
http://www.zhiyin.cn/yx/bxdx/5226207.html |
http://www.zhiyin.cn/yx/bxdx/5226206.html |
http://www.zhiyin.cn/yx/bxdx/5226204.html |
http://www.zhiyin.cn/yx/bxdx/5226193.html |
http://www.zhiyin.cn/yx/bxdx/5226190.html |
http://www.zhiyin.cn/yx/bxdx/5226182.html |
http://www.zhiyin.cn/yx/bxdx/5226181.html |
http://www.zhiyin.cn/yx/bxdx/5226174.html |
http://www.zhiyin.cn/yx/bxdx/5226170.html |
http://www.zhiyin.cn/yx/bxdx/5226163.html |
http://www.zhiyin.cn/yx/bxdx/5226200.html |
http://www.zhiyin.cn/yx/bxdx/5226171.html |
http://www.js0573.com/yx/lwbj/6487430.html |
http://www.js0573.com/yx/lwbj/6487424.html |
http://www.js0573.com/yx/lwbj/6487411.html |
http://www.js0573.com/yx/lwbj/6487401.html |
http://www.js0573.com/yx/lwbj/6487377.html |
http://www.js0573.com/yx/lwbj/6487352.html |
http://www.js0573.com/yx/lwbj/6487325.html |
http://www.js0573.com/yx/lwbj/6487392.html |
http://www.js0573.com/yx/lwbj/6487370.html |
http://www.js0573.com/yx/lwbj/6487340.html |
http://www.js0573.com/yx/lwbj/6487652.html |
http://www.js0573.com/yx/lwbj/6487585.html |
http://www.js0573.com/yx/lwbj/6487574.html |
http://www.js0573.com/yx/lwbj/6487512.html |
http://www.js0573.com/yx/lwbj/6487480.html |
http://www.js0573.com/yx/lwbj/6487460.html |
http://www.js0573.com/yx/lwbj/6488187.html |
http://www.js0573.com/yx/lwbj/6488175.html |
http://www.js0573.com/yx/lwbj/6488150.html |
http://www.js0573.com/yx/lwbj/6488126.html |
http://www.js0573.com/yx/lwbj/6487752.html |
http://www.js0573.com/yx/lwbj/6487720.html |
http://www.js0573.com/yx/lwbj/6487695.html |
http://www.js0573.com/yx/lwbj/6487653.html |
http://www.js0573.com/yx/lwbj/6487601.html |
http://www.js0573.com/yx/lwbj/6487592.html |
http://www.js0573.com/yx/lwbj/6487555.html |
http://www.js0573.com/yx/lwbj/6487531.html |
http://www.js0573.com/yx/lwbj/6487495.html |
http://www.js0573.com/yx/lwbj/6487444.html |
http://www.js0573.com/yx/lwbj/6487595.html |
http://www.js0573.com/yx/lwbj/6487455.html |
http://www.js0573.com/yx/lwbj/6487493.html |
http://www.js0573.com/yx/lwbj/6487410.html |
http://www.js0573.com/yx/lwbj/6487399.html |
http://www.js0573.com/yx/lwbj/6487382.html |
http://www.js0573.com/yx/lwbj/6487354.html |
http://www.js0573.com/yx/lwbj/6487334.html |
http://www.js0573.com/yx/lwbj/6487426.html |
http://www.js0573.com/yx/lwbj/6487419.html |
http://www.js0573.com/yx/lwbj/6487409.html |
http://www.js0573.com/yx/lwbj/6487398.html |
http://www.js0573.com/yx/lwbj/6487388.html |
http://www.js0573.com/yx/lwbj/6487373.html |
http://www.js0573.com/yx/lwbj/6487364.html |
http://www.js0573.com/yx/lwbj/6487327.html |
http://www.js0573.com/yx/lwbj/6487452.html |
http://www.js0573.com/yx/lwbj/6487581.html |
http://www.js0573.com/yx/lwbj/6487546.html |
http://www.js0573.com/yx/lwbj/6487413.html |
http://www.js0573.com/yx/lwbj/6487402.html |
http://www.js0573.com/yx/lwbj/6487383.html |
http://www.js0573.com/yx/lwbj/6487367.html |
http://www.js0573.com/yx/lwbj/6487348.html |
http://www.js0573.com/yx/lwbj/6487323.html |
http://www.js0573.com/yx/lwbj/6487453.html |
http://www.js0573.com/yx/lwbj/6488073.html |
http://www.js0573.com/yx/lwbj/6488038.html |
http://www.js0573.com/yx/lwbj/6487610.html |
http://www.js0573.com/yx/lwbj/6487607.html |
http://www.js0573.com/yx/lwbj/6487605.html |
http://www.js0573.com/yx/lwbj/6487600.html |
http://www.js0573.com/yx/lwbj/6487593.html |
http://www.js0573.com/yx/lwbj/6487494.html |
http://www.js0573.com/yx/lwbj/6487588.html |
http://www.js0573.com/yx/lwbj/6487577.html |
http://www.js0573.com/yx/lwbj/6487565.html |
http://www.js0573.com/yx/lwbj/6487524.html |
http://www.js0573.com/yx/lwbj/6487504.html |
http://www.js0573.com/yx/lwbj/6487471.html |
http://www.js0573.com/yx/lwbj/6487722.html |
http://www.js0573.com/yx/lwbj/6487668.html |
http://www.js0573.com/yx/lwbj/6487422.html |
http://www.js0573.com/yx/lwbj/6487415.html |
http://www.js0573.com/yx/lwbj/6487403.html |
http://www.js0573.com/yx/sjbm/6487999.html |
http://www.js0573.com/yx/sjbm/6487984.html |
http://www.js0573.com/yx/sjbm/6487967.html |
http://www.js0573.com/yx/sjbm/6487945.html |
http://www.js0573.com/yx/sjbm/6487892.html |
http://www.js0573.com/yx/sjbm/6487859.html |
http://www.js0573.com/yx/sjbm/6487817.html |
http://www.js0573.com/yx/sjbm/6487781.html |
http://www.js0573.com/yx/sjbm/6487956.html |
http://www.js0573.com/yx/sjbm/6487928.html |
http://www.js0573.com/yx/sjbm/6487903.html |
http://www.js0573.com/yx/sjbm/6487866.html |
http://www.js0573.com/yx/sjbm/6487835.html |
http://www.js0573.com/yx/sjbm/6487751.html |
http://www.js0573.com/yx/sjbm/6487707.html |
http://www.js0573.com/yx/sjbm/6487676.html |
http://www.js0573.com/yx/sjbm/6488182.html |
http://www.js0573.com/yx/sjbm/6487775.html |
http://www.js0573.com/yx/sjbm/6487632.html |
http://www.js0573.com/yx/sjbm/6488167.html |
http://www.js0573.com/yx/sjbm/6488116.html |
http://www.js0573.com/yx/sjbm/6487756.html |
http://www.js0573.com/yx/sjbm/6487726.html |
http://www.js0573.com/yx/sjbm/6487700.html |
http://www.js0573.com/yx/sjbm/6487664.html |
http://www.js0573.com/yx/sjbm/6487637.html |
http://www.js0573.com/yx/sjbm/6488075.html |
http://www.js0573.com/yx/sjbm/6488015.html |
http://www.js0573.com/yx/sjbm/6488312.html |
http://www.js0573.com/yx/sjbm/6488269.html |
http://www.js0573.com/yx/sjbm/6488227.html |
http://www.js0573.com/yx/sjbm/6487933.html |
http://www.js0573.com/yx/sjbm/6487681.html |
http://www.js0573.com/yx/sjbm/6487648.html |
http://www.js0573.com/yx/sjbm/6487884.html |
http://www.js0573.com/yx/sjbm/6487855.html |
http://www.js0573.com/yx/sjbm/6487535.html |
http://www.js0573.com/yx/sjbm/6487499.html |
http://www.js0573.com/yx/sjbm/6487461.html |
http://www.js0573.com/yx/sjbm/6487762.html |
http://www.js0573.com/yx/sjbm/6487582.html |
http://www.js0573.com/yx/sjbm/6487562.html |
http://www.js0573.com/yx/sjbm/6487514.html |
http://www.js0573.com/yx/sjbm/6487492.html |
http://www.js0573.com/yx/sjbm/6487746.html |
http://www.js0573.com/yx/sjbm/6487711.html |
http://www.js0573.com/yx/sjbm/6487591.html |
http://www.js0573.com/yx/sjbm/6487566.html |
http://www.js0573.com/yx/sjbm/6487528.html |
http://www.js0573.com/yx/sjbm/6487464.html |
http://www.js0573.com/yx/sjbm/6487580.html |
http://www.js0573.com/yx/sjbm/6487549.html |
http://www.js0573.com/yx/sjbm/6487490.html |
http://www.js0573.com/yx/sjbm/6487606.html |
http://www.js0573.com/yx/sjbm/6487507.html |
http://www.js0573.com/yx/sjbm/6487825.html |
http://www.js0573.com/yx/sjbm/6488000.html |
http://www.js0573.com/yx/sjbm/6487896.html |
http://www.js0573.com/yx/sjbm/6487862.html |
http://www.js0573.com/yx/sjbm/6487733.html |
http://www.js0573.com/yx/sjbm/6487686.html |
http://www.js0573.com/yx/sjbm/6487758.html |
http://www.js0573.com/yx/sjbm/6487744.html |
http://www.js0573.com/yx/sjbm/6487723.html |
http://www.js0573.com/yx/sjbm/6487698.html |
http://www.js0573.com/yx/sjbm/6487672.html |
http://www.js0573.com/yx/sjbm/6487646.html |
http://www.js0573.com/yx/sjbm/6487615.html |
http://www.js0573.com/yx/sjbm/6487602.html |
http://www.js0573.com/yx/sjbm/6487598.html |
http://www.js0573.com/yx/sjbm/6487552.html |
http://www.js0573.com/yx/sjbm/6487534.html |
http://www.js0573.com/yx/sjbm/6487519.html |
http://www.js0573.com/yx/sjbm/6487603.html |
http://www.js0573.com/yx/sjbm/6487594.html |
http://www.js0573.com/yx/jsfs/6487895.html |
http://www.js0573.com/yx/jsfs/6487856.html |
http://www.js0573.com/yx/jsfs/6487821.html |
http://www.js0573.com/yx/jsfs/6487946.html |
http://www.js0573.com/yx/jsfs/6487852.html |
http://www.js0573.com/yx/jsfs/6487782.html |
http://www.js0573.com/yx/jsfs/6487961.html |
http://www.js0573.com/yx/jsfs/6487877.html |
http://www.js0573.com/yx/jsfs/6487811.html |
http://www.js0573.com/yx/jsfs/6487792.html |
http://www.js0573.com/yx/jsfs/6487944.html |
http://www.js0573.com/yx/jsfs/6487919.html |
http://www.js0573.com/yx/jsfs/6487864.html |
http://www.js0573.com/yx/jsfs/6487837.html |
http://www.js0573.com/yx/jsfs/6487806.html |
http://www.js0573.com/yx/jsfs/6487994.html |
http://www.js0573.com/yx/jsfs/6487978.html |
http://www.js0573.com/yx/jsfs/6487949.html |
http://www.js0573.com/yx/jsfs/6487922.html |
http://www.js0573.com/yx/jsfs/6487868.html |
http://www.js0573.com/yx/jsfs/6487838.html |
http://www.js0573.com/yx/jsfs/6487804.html |
http://www.js0573.com/yx/jsfs/6488204.html |
http://www.js0573.com/yx/jsfs/6488190.html |
http://www.js0573.com/yx/jsfs/6488180.html |
http://www.js0573.com/yx/jsfs/6488163.html |
http://www.js0573.com/yx/jsfs/6488143.html |
http://www.js0573.com/yx/jsfs/6488097.html |
http://www.js0573.com/yx/jsfs/6488014.html |
http://www.js0573.com/yx/jsfs/6488596.html |
http://www.js0573.com/yx/jsfs/6488580.html |
http://www.js0573.com/yx/jsfs/6487940.html |
http://www.js0573.com/yx/jsfs/6487914.html |
http://www.js0573.com/yx/jsfs/6491655.html |
http://www.js0573.com/yx/jsfs/6487869.html |
http://www.js0573.com/yx/jsfs/6487807.html |
http://www.js0573.com/yx/jsfs/6487998.html |
http://www.js0573.com/yx/jsfs/6487987.html |
http://www.js0573.com/yx/jsfs/6487969.html |
http://www.js0573.com/yx/jsfs/6487943.html |
http://www.js0573.com/yx/jsfs/6487889.html |
http://www.js0573.com/yx/jsfs/6487824.html |
http://www.js0573.com/yx/jsfs/6488544.html |
http://www.js0573.com/yx/jsfs/6488519.html |
http://www.js0573.com/yx/jsfs/6487973.html |
http://www.js0573.com/yx/jsfs/6487953.html |
http://www.js0573.com/yx/jsfs/6487907.html |
http://www.js0573.com/yx/jsfs/6487959.html |
http://www.js0573.com/yx/jsfs/6487939.html |
http://www.js0573.com/yx/jsfs/6487909.html |
http://www.js0573.com/yx/jsfs/6487881.html |
http://www.js0573.com/yx/jsfs/6487819.html |
http://www.js0573.com/yx/jsfs/6487784.html |
http://www.js0573.com/yx/jsfs/6487863.html |
http://www.js0573.com/yx/jsfs/6487834.html |
http://www.js0573.com/yx/jsfs/6488124.html |
http://www.js0573.com/yx/jsfs/6488099.html |
http://www.js0573.com/yx/jsfs/6487911.html |
http://www.js0573.com/yx/jsfs/6487822.html |
http://www.js0573.com/yx/jsfs/6488058.html |
http://www.js0573.com/yx/jsfs/6487976.html |
http://www.js0573.com/yx/jsfs/6487923.html |
http://www.js0573.com/yx/jsfs/6487893.html |
http://www.js0573.com/yx/jsfs/6487795.html |
http://www.js0573.com/yx/jsfs/6488127.html |
http://www.js0573.com/yx/jsfs/6488081.html |
http://www.js0573.com/yx/jsfs/6488007.html |
http://www.js0573.com/yx/jsfs/6487979.html |
http://www.js0573.com/yx/jsfs/6487926.html |
http://www.js0573.com/yx/jsfs/6487870.html |
http://www.js0573.com/yx/jsfs/6487802.html |
http://www.js0573.com/yx/jsfs/6487927.html |
http://www.js0573.com/yx/jsfs/6487900.html |
http://www.js0573.com/yx/jsfs/6487799.html |
http://www.js0573.com/yx/jsfs/6487747.html |