Android App Activities

Choose a study mode

Play Quiz
Study Flashcards
Spaced Repetition
Chat to Lesson

Podcast

Play an AI-generated podcast conversation about this lesson
Download our mobile app to listen on the go
Get App

Questions and Answers

In Android development, what is the primary role of an Activity?

  • To manage background services and data synchronization.
  • To define the data structure for storing application data.
  • To handle network requests and manage server communication.
  • To interact with the user interface and provide a window for the app's UI. (correct)

When an Android application is launched, how does the system handle the activities?

  • It randomly selects an activity to start first.
  • It merges all activities into a single view.
  • It runs all activities in parallel within a single process.
  • It places the first activity to be started onto an Activity Stack. (correct)

Which method is called when Android starts an activity?

  • onResume()
  • onLaunch()
  • onStart()
  • onCreate() (correct)

What is the purpose of the Activity Stack in Android?

<p>To manage the order and state of activities in an application. (D)</p> Signup and view all the answers

In the Activity lifecycle, when is the onRestart() method called?

<p>When the activity has been stopped but is about to start again. (D)</p> Signup and view all the answers

Under what circumstances is the onPause() method called in an Android Activity?

<p>When the activity is no longer in the foreground because another activity is resuming. (A)</p> Signup and view all the answers

Which of the following scenarios typically triggers the onStop() method in an Android Activity?

<p>A newly launched activity covers the entire screen. (B)</p> Signup and view all the answers

What is the primary purpose of the onDestroy() method in the lifecycle of an Android Activity?

<p>To execute final cleanup before the activity is destroyed. (A)</p> Signup and view all the answers

When is the onResume() method called in the Activity lifecycle?

<p>When the activity is in the foreground and ready for user interaction. (A)</p> Signup and view all the answers

In the context of Activity lifecycle management, what consequence should you avoid by properly using the lifecycle methods?

<p>Consuming valuable system resources when the user is not actively using the app. (A)</p> Signup and view all the answers

What is the purpose of setContentView(View) in Android development?

<p>To define the layout file to be used for the activity's UI. (B)</p> Signup and view all the answers

By default, how does Android handle the execution of different applications?

<p>Each application runs within its own process for security and stability. (C)</p> Signup and view all the answers

What is the role of the Handler class in Android development?

<p>To schedule code to run at some point in the future. (D)</p> Signup and view all the answers

What is the difference between post() and postDelayed() methods of the Handler class in Android?

<p><code>post()</code> executes the code as soon as possible, while <code>postDelayed()</code> executes the code after a specified delay. (C)</p> Signup and view all the answers

Why is it important to register activities in the app's manifest file?

<p>To inform the system about the activity and its properties. (B)</p> Signup and view all the answers

When should you implement the onSaveInstanceState() method in an Android activity?

<p>Before the activity is destroyed, to save its current state. (C)</p> Signup and view all the answers

What type of object is passed as a parameter to the onSaveInstanceState() method?

<p>A Bundle object. (D)</p> Signup and view all the answers

During a configuration change such as device rotation, what is the typical sequence of lifecycle methods called?

<p><code>onPause() -&gt; onStop() -&gt; onDestroy() -&gt; onCreate() -&gt; onStart() -&gt; onResume()</code> (C)</p> Signup and view all the answers

When implementing a stopwatch activity, why is it important to save the state of the stopwatch (e.g., seconds, running state) during the activity lifecycle?

<p>To ensure that the stopwatch continues from where it left off if the activity is recreated. (C)</p> Signup and view all the answers

which layout types could be used to implement the UI of a Stop Watch Activity?

<p>All of the above (D)</p> Signup and view all the answers

What does an Activity inherit?

<p>Lifecycle methods. (D)</p> Signup and view all the answers

What is the purpose of using findViewById(R.id.time_view) in the runTimer() method?

<p>To retrieve a reference to the TextView that displays the timer. (C)</p> Signup and view all the answers

Within the sample StopwatchActivity, what is the purpose of the onClickReset() method?

<p>To reset the stopwatch to zero. (C)</p> Signup and view all the answers

What does Context provide access to??

<p>Application resources, classes, and operations (B)</p> Signup and view all the answers

What is the likely result of failing to save an Activity's state before configuration change?

<p>The app will lose local variables used by the activity (C)</p> Signup and view all the answers

Flashcards

What is an app?

A collection of activities, layouts, and resources that make up an application.

Main Activity

The main activity serves as the primary interface for user interaction.

setContentView(View)

Activities interact with the UI using this method to display content.

Lifecycle Scope

The lifecycle states and callbacks are for each activity, allowing unique behavior.

Signup and view all the flashcards

Activity Stack

Maintains the order of activities; when a new activity starts, the previous one is pushed down.

Signup and view all the flashcards

onCreate()

Called when the activity is first created; contains saved state.

Signup and view all the flashcards

Multi-Window Pause

In multi-window mode, apps without focus enter a paused state.

Signup and view all the flashcards

onDestroy()

Called before an activity is destroyed or finished.

Signup and view all the flashcards

Activity Lifecycle Importance

Losing the user's progress if they leave your app and return to it at a later time. Crashing or losing the user's progress when the screen rotates between landscape and portrait orientation or switches to another app while using your app.

Signup and view all the flashcards

App Context

Access app resources and classes, providing necessary environmental context.

Signup and view all the flashcards

Activity Running/Active

The main state of an activity is when it's running or active. An activity is running when it's in the foreground of the screen, it has the focus, and the user can interact with it.

Signup and view all the flashcards

onSaveInstanceState()

Saves app state data before destruction.

Signup and view all the flashcards

onStop()

When the activity is no longer visible

Signup and view all the flashcards

onPause()

When your activity is no longer in the foreground because another activity is resuming

Signup and view all the flashcards

Handler

To use the Handler, you wrap the code you wish to schedule in a Runnable object

Signup and view all the flashcards

Study Notes

Activity Basics

  • An app consists of activities, layouts, and resources, with the main activity serving as the app's primary interface.

Process Management

  • By default, each app operates in its own process, enhancing security and stability.
  • The system can terminate processes to free memory if resources are strained.

Activity Launch

  • When an activity starts, Android checks for an existing process for the app.
  • If a process is found, the activity runs within it; otherwise, a new process is created.
  • The onCreate() method is always called when an activity is created.

UI Interaction

  • Activities interact with the user interface using setContentView(View).

Activity Functions

  • An activity provides the window for app UI rendering.
  • Generally, a single activity corresponds to one screen.

Activity Registration

  • Activities must be registered in the app's manifest and managed with appropriate lifecycles.

Lifecycle States

  • Lifecycle states and callbacks are specific to each activity, enabling distinct behaviors at different lifecycle stages.

Activity Stack

  • The runtime system maintains an Activity Stack for each running application.
  • When an application is launched, the first activity is placed on the stack.
  • Launching another activity places it on the stack, pushing the previous activity down.

Android Activity Lifecycle Methods

  • onCreate(): Called when the activity is first created, providing a Bundle with the activity's saved state and calls onStart().
  • onRestart(): Called when an activity is stopped but is just about to be started again, calling onStart().
  • onStart(): Called when the activity becomes visible, calling onResume() or onStop().
  • onResume(): Called when the activity is in the foreground, calling onPause().
  • onPause(): Called when the activity is no longer in the foreground, typically when another activity is resuming, calling onResume() or onStop().
  • onStop(): Called when the activity is no longer visible, calling onRestart() or onDestroy().
  • onDestroy(): Called when the activity is about to be destroyed or is finishing, with no subsequent method calls.

Activity Pauses

  • onPause() is called when an event interrupts app execution, like a phone call, navigation to another activity, or the screen turning off.
  • In Android 7.0 (API level 24) or higher, onPause() is called when multiple apps run in multi-window mode.
  • When a new, semi-transparent activity (like a dialog) opens, the activity remains paused as long as it is partially visible but not in focus.

Activity Stops

  • onStop() is called when a newly launched activity covers the entire screen, or the user navigates to the device's home screen.

Activity Destroys

  • onDestroy() is called when the user completely dismisses the activity or the system temporarily destroys the activity due to a configuration change.
  • Examples of configuration changes are device rotation or language change.

Implementing a Stop Watch Activity

  • The layout can be implemented using Linear Layout, Relative Layout, or Constraint Layout.

Handler

  • A Handler is used to schedule code to run in the future.
  • The code to be scheduled is wrapped in a Runnable object.

Handler use

  • Handlers use the Post() and postDelayed() methods to specify when the code should run.
  • The post() method posts code to be run as soon as possible.
  • postDelayed() posts code to be run in the future.

Context Interface

  • Context serves as an interface to global application information, providing access to resources, classes, and operations

Activity Class

  • The Activity class implements default lifecycle methods and defines methods like findViewById(Int) and setContentView(View).

Activity States

  • The main state of an activity is when it's running or active, in the foreground, has focus, and is interactive.
  • The onCreate() method is immediately called after launching, so normal setups such as calling setContentView() can occur.
  • The onDestroy() method is the final call before an activity is destroyed, whether it's told to finish, due to device configuration, or to save space.

Save Activity State

  • Device configuration changes cause the loss of local variables.
  • The onSaveInstanceState() method is implemented to store values before the activity is destroyed.

onSaveInstanceState()

  • The onSaveInstanceState() method takes a Bundle to store data.

Lifecycle Visibility Methods

  • The additional lifecycle methods: onStart(), onStop(), and onRestart().
  • Inherit from Android Activity class like onCreate() and onDestroy().

Visibility Methods

  • onStart() is called when your activity becomes visible.
  • onStop() is called your activity has stopped being visible.
  • onRestart() is called after your activity has been made invisible but before it gets made visible again.

Implement onStop():

  • A new variable records the stopwatch state before onStop().
  • This determines if running is reset when the activity is visible again.

Implement onPause()

  • When an activity is visible but out of focus, it is Paused.
  • This occurs when another activity appears on top of your activity that isn’t full-size or that’s transparent.
  • Properly using the Activity Life cycle to avoid consuming unnecessary resources.

App Performance

  • The Activity Life cycle avoids losing the user's progress and prevents crashing.
  • Avoid the user’s progress when the screen rotates between landscape and portrait orientation

Studying That Suits You

Use AI to generate personalized quizzes and flashcards to suit your learning preferences.

Quiz Team

Related Documents

More Like This

Mastering Android Activities
9 questions
Android Activities Overview
30 questions
Android App Components Quiz
47 questions

Android App Components Quiz

BetterKnownConnemara9267 avatar
BetterKnownConnemara9267
Android Developer Fundamentals V2 - Activities
42 questions
Use Quizgecko on...
Browser
Browser