How to include layout inside layout in Android?
I am creating common layout. I want to include that layout in another page.
From Official documents about Re-using Layouts
Although Android offers a variety of widgets to provide small and re-usable interactive elements, you might also need to re-use larger components that require a special layout. To efficiently re-use complete layouts, you can use the tag to embed another layout inside the current layout.
Here is my header.xml file which i can reuse using include tag
No I use the tag in XML to add another layout from another XML file.