Difference between content_main.xml and activity_main.xml?

前端 未结 6 1482
盖世英雄少女心
盖世英雄少女心 2020-11-28 08:16

I am new to Android App development. I have Android Studio 1.4. In my layout folder I have two XML files (content_main.xml and activity_main.xml).

6条回答
  •  野性不改
    2020-11-28 09:13

    The activity_main.xml is the "outer" part of the activity layout (toolbar, action button, etc.) and content_main.xml is the inner part where you put your own layout (the blank space).

    content_main.xml file will be generated when you choose "blank activity". This activity will be having floating button by default at the bottom of the screen.

    But when you choose "empty activity" then content_main.xml won't be generated and it won't be having floating button, but just simple Activity.

提交回复
热议问题