Bir Fragment, bir Activity içinde yaşayan ve yeniden kullanılabilir bir UI parçasıdır — kendi yaşam döngüsüne (lifecycle) sahip modüler, kendi başına yeterli bir UI bileşenidir. Fragment'ler esnek, yeniden kullanılabilir kullanıcı arayüzleri sağlar ve modern single-Activity mimarilerinin merkezinde yer alırlar.
Fragment nedir
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.
