Android Project directory structure:
Assets : Assets Directory: Storage files, these files will be packaged into the APK file
Bin: compiled file directory
Gen: Auto-generated file directory
Project.Properties: represents the compiled version for the Android Jar package version
Libs: Supported jar package, will be added to Android depend directory
Res: Resource Directory (according to the DPI is divided into H: High resolution M: Medium resolution L: Low resolution x: Large resolution XX: Very large resolution, will be in the R Generate an ID in the file)
(1) drawable: Store application picture file
(2) Anim: Custom animation files
(3) Layout: Custom layout file
(2) Values: Custom variables
Androidmanifest. xml : Application manifest file, program configuration information, startup icon, application name, package name, version number
Android Learning Experience-project directory