Main directories and files of Android projects
Every Android project necessarily have these files and directories.
- AndroidManifest.xml file -Explain fundamental characteristic of app and defines each of its components.
- src/ -it is the directory of main source file and by default includes an Activity class which run when app is running.
- res/ -it contain sub directories of application resources.
- drawable-hdpi/ - stores drawable objects in directory designed for high density screen.
- drawable-mdpi/- stores drawable objects in directory designed for medium density screen.
- drawable-ldpi/- stores drawable objects in directory designed for low density screen.
- layout/ -it is the directories which defines user interface.
- value/- contain various xml file which contain collection of resources.
No comments:
Post a Comment