banner



Design Background For App Using Android Studio

Processing data in the background is an important part of creating an Android application that is both responsive for your users as well as a good citizen on the Android platform. This guide explains what qualifies as background work, defines background task categories, provides you with criteria to categorize your tasks, and recommends APIs that you should use to execute them.

Guiding principle

In general, any task that takes more than a few milliseconds should be delegated to a background thread. Common long-running tasks include things like decoding a bitmap, accessing storage, working on a machine learning (ML) model, or performing network requests.

Definition of background work

An app is considered to be running in the background as long as each of the following conditions are satisfied:

  1. None of the app's activities are currently visible to the user.
  2. The app isn't running any foreground services that started while an activity from the app was visible to the user.

Otherwise, the app is considered to be running in the foreground.

Common background tasks

The following list shows common tasks that an app manages while it runs in the background:

  • Your app registers a broadcast receiver in the manifest file.
  • Your app schedules a repeating alarm using Alarm Manager.
  • Your app schedules a background task, either as a worker using Work Manager or a job using Job Scheduler.

Categories of background tasks

Background tasks fall into one of the following main categories:

  • Immediate
  • Exact
  • Expedited
  • Deferred

To categorize a task, answer the following questions, and traverse the corresponding decision tree in figure 1:

Does the task need to complete while the user is interacting with the application?
If so, this task should be categorized for immediate execution. If not, proceed to the next question.
Does the task need to run at an exact time?
If you do need to run a task at an exact time, categorize the task as exact. If not, proceed to the next question.
Does the task need to run as soon as possible?
If the system should prioritize the task to run as soon as possible, categorize the task as expedited.

Most tasks don't need to be run at an exact time. Tasks generally allow for slight variations in when they run that are based on conditions such as network availability and remaining battery. Tasks that don't need to be run at an exact time should be categorized as deferred.

this decision tree helps you decide which category is best for              your background task
Figure 1. This decision tree helps you decide which category is best for your background task.

The following sections describe recommended solutions for each background task type.

We recommend Kotlin coroutines for tasks that should end when the user leaves a certain scope or finishes an interaction. Many Android KTX libraries contain ready-to-use coroutine scopes for common app components like ViewModel and common application lifecycles.

For Java programming language users, see Threading on Android for recommended options.

For tasks that should be executed immediately and need continued processing, even if the user puts the application in background or the device restarts, we recommend using WorkManager and its support for long-running tasks.

In specific cases, such as with media playback or active navigation, you might want to use foreground Services directly.

Exact tasks

A task that needs to be executed at an exact point in time can use AlarmManager.

To learn more about AlarmManager, see Schedule alarms.

Expedited tasks

A task that needs to run as soon as possible can start an expedited job using expedited work.

Deferred tasks

Every task that is not directly connected to a user interaction and can run at any time in the future can be deferred. The recommended solution for deferred tasks is WorkManager.

WorkManager makes it easy to schedule deferrable, asynchronous tasks that are expected to run even if the app exits or the device restarts. See the documentation for WorkManager to learn how to schedule these types of tasks.

Design Background For App Using Android Studio

Source: https://developer.android.com/guide/background

Posted by: parkerstol1959.blogspot.com

0 Response to "Design Background For App Using Android Studio"

Post a Comment

Iklan Atas Artikel

Iklan Tengah Artikel 1

Iklan Tengah Artikel 2

Iklan Bawah Artikel