Activity என்பது user interface கொண்ட ஒரு single screen ஐ பிரதிநிதித்துவம் செய்கிறது — இது Android இன் fundamental component ஆகும். அதன் lifecycle (created, shown, hidden மற்றும் destroyed ஆக இருக்கும் போது states மற்றும் callbacks இன் sequence) resources மற்றும் state ஐ சரியாக manage செய்வதற்கு புரிந்துகொள்ள மிக முக்கியமாகும்.
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
