Ein Fragment ist ein wiederverwendbarer UI-Teil, der innerhalb einer Activity lebt — eine modulare, in sich geschlossene UI-Komponente mit eigenem Lebenszyklus. Fragments ermöglichen flexible, wiederverwendbare UIs und sind zentral für moderne Single-Activity-Architekturen.
Was ein Fragment ist
A FRAGMENT = a reusable, modular piece of UI hosted inside an Activity:
→ has its OWN lifecycle (tied to but distinct from the host activity's)
→ multiple fragments can be combined in one activity; reused across activities
→ represents a portion of the screen (or a whole screen's content)
→ Think: an activity can host one or more fragments that make up its UI.
