LinearLayout (vertical)
├─ TextView (title: "Kotlin Collections")
├─ LinearLayout (horizontal) [List Section]
│ ├─ TextView (label: "List Items")
│ ├─ TextView (shows list contents)
│ └─ Button (label: "Add to List")
├─ LinearLayout (horizontal) [Map Section]
│ ├─ TextView (label: "Map Items")
│ ├─ TextView (shows map contents)
│ └─ Button (label: "Add to Map")
└─ LinearLayout (horizontal) [Set Section]
├─ TextView (label: "Set Items")
├─ TextView (shows set contents)
└─ Button (label: "Add to Set")
The main vertical layout stacks the title and three horizontal sections. Each horizontal section shows a label, the current contents of the collection, and a button to add a new item. This layout helps learners see each collection type side by side with clear labels and interactive buttons.