I have just begun learning Android App development. I have Android Studio 1.4. In my layout folder I have two XML files (content_main.xml
and activity_mai
The modern Android approach is based on Fragments
, which are, in a way, "small Activities", which you can put in Activities
, gaining lots of flexibility.
Therefore, activity_main.xml
is simply the Activity layout containing a container (FrameLayout
most probably) and content_main.xml
is the layout for a Fragment put into this container somewhere within MainActivity.java
. You should study the code in there to understand it better :)