0Pricing
Android Academy · Lesson

Activities & Lifecycle

Learn what an Activity is, understand the Activity lifecycle callbacks (onCreate, onStart, onResume, onPause, onStop, onDestroy), and use ViewBinding.

Activities & Lifecycle is a free Android Academy lesson on CoddyKit — lesson 2 of 7. You can read the complete lesson below for free — then practise it hands-on in the browser with a built-in code editor and a 24/7 AI tutor. It is part of the Android Academy learning path, one of 7 lessons in the course, and your progress syncs across the web and the CoddyKit app.

What Is an Activity?

An Activity is a single screen in your Android app.

  • Every screen (login, home, settings) is an Activity
  • It manages a layout (XML) and user interactions
  • Declared in AndroidManifest.xml

Think of it as the Android equivalent of a web page — each page is an Activity.

Activity Lifecycle

An Activity goes through a series of lifecycle states as the user navigates the app:

  • CreatedStartedResumed (visible & active)
  • Paused (partially hidden)
  • Stopped (completely hidden)
  • Destroyed (Activity is gone)

You override lifecycle methods to respond to these transitions.

Lifecycle Callbacks

The six main lifecycle callbacks:

  • onCreate() — Activity is being created. Set up your layout here.
  • onStart() — Activity becomes visible.
  • onResume() — Activity is in the foreground, user can interact.
  • onPause() — User is leaving. Save temporary data.
  • onStop() — Activity is no longer visible.
  • onDestroy() — Activity is being destroyed.

MainActivity Example

A minimal Activity with lifecycle logging:

import android.os.Bundle
import android.util.Log
import androidx.appcompat.app.AppCompatActivity

class MainActivity : AppCompatActivity() {

    private val TAG = "MainActivity"

    override fun onCreate(savedInstanceState: Bundle?) {
        super.onCreate(savedInstanceState)
        setContentView(R.layout.activity_main)
        Log.d(TAG, "onCreate")
    }

    override fun onResume() {
        super.onResume()
        Log.d(TAG, "onResume — user is here")
    }

    override fun onPause() {
        super.onPause()
        Log.d(TAG, "onPause — saving state")
    }

    override fun onDestroy() {
        super.onDestroy()
        Log.d(TAG, "onDestroy")
    }
}

Why Lifecycle Matters

Common mistakes caused by ignoring the lifecycle:

  • Playing a video in onResume but forgetting to pause it in onPause — drains battery
  • Registering a sensor listener in onCreate but not unregistering in onDestroy — memory leak
  • Not saving form data in onPause — user loses progress on a phone call

Saving State: onSaveInstanceState

When the user rotates the phone, the Activity is destroyed and recreated. Your UI state is lost.

Save transient state in onSaveInstanceState(bundle) and restore it in onCreate(savedInstanceState).

Saving & Restoring State

Persist data across configuration changes:

class CounterActivity : AppCompatActivity() {

    private var count = 0

    override fun onCreate(savedInstanceState: Bundle?) {
        super.onCreate(savedInstanceState)
        setContentView(R.layout.activity_counter)

        // Restore saved state after rotation
        count = savedInstanceState?.getInt("count") ?: 0
    }

    override fun onSaveInstanceState(outState: Bundle) {
        super.onSaveInstanceState(outState)
        outState.putInt("count", count)
    }
}

Back Stack

Android manages a back stack of Activities:

  • Launching a new Activity pushes it onto the stack
  • Pressing Back pops the top Activity and destroys it
  • The previous Activity resumes automatically

This is why you shouldn't call finish() manually unless you specifically want to remove the current screen from the back stack.

Configuration Changes

Any configuration change (rotation, language change, keyboard attached) recreates the Activity by default.

The modern solution is to use a ViewModel — it survives configuration changes and holds your data safely. You'll learn ViewModel in the Architecture module.

Quick Check

In which lifecycle method should you set up the layout (call setContentView)?

Recap: Activities & Lifecycle

You now understand Android Activities:

  • An Activity = one screen in your app
  • Lifecycle: onCreate → onStart → onResume → onPause → onStop → onDestroy
  • Save transient state in onSaveInstanceState
  • Rotation destroys and recreates the Activity
  • Android manages a back stack automatically

Next: designing screens with layouts and views.

Frequently asked questions

Is the “Activities & Lifecycle” lesson free?

Yes — the full text of “Activities & Lifecycle” is free to read here on the web, and the Android Academy course includes 7 lessons in total. To practise it interactively (a built-in code editor and a 24/7 AI tutor) and unlock the rest of the Android Academy course, upgrade to CoddyKit PRO.

What will I learn in “Activities & Lifecycle”?

Learn what an Activity is, understand the Activity lifecycle callbacks (onCreate, onStart, onResume, onPause, onStop, onDestroy), and use ViewBinding. You practise Android Academy with hands-on code you run directly in the browser, and a 24/7 AI tutor answers your questions as you work through the lesson.

Do I need any experience to start Android Academy?

No prior experience is required. Android Academy on CoddyKit is structured for beginners through advanced learners; this is — lesson 2 of 7, so you can start here or from the beginning and move at your own pace.

How long does the “Activities & Lifecycle” lesson take?

Most CoddyKit lessons take about 5–10 minutes. Each one is bite-sized and interactive, so you make steady progress and pick up exactly where you left off across the web and the app.

Can I write and run code in this Android Academy lesson?

Yes. Every Android Academy lesson includes a built-in code editor, so you write and run real code right in your browser and get instant AI feedback — no local setup required.

All lessons in this course

  1. Project Structure & Manifest
  2. Activities & Lifecycle
  3. Layouts & Views
  4. Handling User Input
  5. Intents & Navigation
  6. Fragments
  7. Permissions & Runtime Requests
← Back to Android Academy