Një Fragment është një pjesë e ripërdorshme e UI-t që jeton brenda një Activity — një komponent UI modular, i vetëmjaftueshëm me cikli i vet të jetës. Fragmentet mundësojnë UI-t fleksibël dhe të ripërdorshme dhe janë qendror në arkitekturat moderne me një Activity të vetme.
Çfarë është një Fragment
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.
