Een Activity vertegenwoordigt een enkel scherm met een gebruikersinterface — een fundamenteel Android-component. De lifecycle ervan (de reeks toestanden en callbacks terwijl het wordt gemaakt, weergegeven, verborgen en vernietigd) is cruciaal om correct resources en state te beheren.
Wat een Activity is
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
