recently said to get started Android Project So read some information, after the new project, see the project structure really a lot of things ah, a little bit of a circle, take everyone to understand. Overall structure
Next Step-by-step introduction:
( 1 ) src : Java source code storage directory, Java the code file is stored in this.
(2)Gen:automatically generate the directory, storing all theAndroiddevelopment tools automatically generate files, the most important thing in the directory isR.javafile, this file is created byAndroidThe development tools are generated automatically. AndroidThe development tool will automatically follow you intoResdirectory resources, synchronizing update modificationsR.javafile.
( 3 ) Res : Resource directory in which we can store the various resources used by the application.
(4)Assets: Resource Directory,Androidin addition to providingResThe directory holds the resource file,Assetsdirectories can also hold resource files, andAssetsthe resource files under the directory are notR.javaautomatically generatedID.
( 5 ) project.properties : It is pointed out that the program is Android which version.
( 6 ) Androidmanifest.xml : A project manifest file that lists the functions that the program has.
Here is only a preliminary understanding, later in the application can be more in-depth understanding, the next there will be a series of articles to show to you.
Android Project Structure