An Activity yana wakilta wata allon gida mai haɗi da mai amfani — ainihin sashen Android. Tsarin rayuwansa (jerin halin da kiran bakin wuta yayin da aka kirkira shi, aka nuna shi, aka ɓoye shi, da aka hallaka shi) yana da mahimmanci sosai don fahimtar sarrafa albarkatun da jiha daidai.
Menene Activity
An ACTIVITY = one screen of the app (a UI the user interacts with):
→ an app is typically several activities (a login screen, a home screen, etc.)
→ the OS manages activities and calls LIFECYCLE methods as their state changes
Tsarin rayuwar Activity
Key lifecycle callbacks (the OS calls these as the activity's state changes):
onCreate() → activity is being CREATED → initialize UI, set up (called once)
onStart() → becoming VISIBLE to the user
onResume() → now in the FOREGROUND, interactive (user can interact)
onPause() → losing focus (another activity coming in front) → pause/save lightly
onStop() → no longer VISIBLE → release resources, stop heavy work
onDestroy() → being DESTROYED → final cleanup
→ Flow: onCreate → onStart → onResume → [running] → onPause → onStop → onDestroy
