November 2017
Beginner to intermediate
348 pages
7h 57m
English
Android Studio gives you a fairly standard Java project structure, that is, you have your main source sets, tests, a resources directory, and so on, but that doesn't really cover all of your organizational needs. If you check the project structure we created, you might note some patterns:

You'll first note that only a single Activity was created--MainActivity, but this Activity template has generated four layout files.
Only activity_main.xml is actually referenced by MainActivity; all the other files are included via the resource system.
The next thing to note is that the layout file referenced by MainActivity ...
Read now
Unlock full access