
Getting started with WorkManager - Android Developers
Oct 29, 2025 · Once your work is defined, it must be scheduled with the WorkManager service in order to run. WorkManager offers a lot of flexibility in how you schedule your work.
Task scheduling | Background work | Android Developers
Sep 8, 2025 · Explains how to use WorkManager to schedule tasks that will run across app or device restarts.
WorkManager | Jetpack | Android Developers
The WorkManager API makes it easy to schedule deferrable, asynchronous tasks that must be run reliably. These APIs let you create a task and hand it off to WorkManager to run when the work …
Define work requests | Background work | Android Developers
4 days ago · WorkManager 2.7.0 introduced the concept of expedited work. This allows WorkManager to execute important work while giving the system better control over access to resources.
Background Work with WorkManager - Android Developers
WorkManager is the recommended task scheduler on Android. This codelab will teach you the ins and outs of WorkManager: everything from writing a simple job to more complex chained jobs.
任务调度 | Background work | Android Developers
WorkManager 允许您使用灵活的调度窗口 调度工作,以运行 一次性 或 重复 工作。 您还可以对工作进行标记或命名,以便调度唯一的、可替换的工作以及监控或取消工作组。
WorkManager | API reference | Android Developers
Overview AndroidX Class Index Package Index android.support.v4.media android.support.v4.media.session androidx.activity androidx.activity.contextaware
WorkManager の概要 | Background work | Android Developers
WorkManager を使用すると、作業スケジュールを柔軟に設定できます。 スケジュールを設定して、作業を一定の間隔で 定期的に実行 することも、 1 回 限り実行することもできます。
Background Work with WorkManager - Java - Android Developers
Sep 21, 2023 · WorkManager is the recommended task scheduler on Android. This codelab will teach you the ins-and-outs of WorkManager: everything from writing a simple job to more complex chained …
Managing work | Background work | Android Developers
Sep 5, 2025 · WorkManager 2.4.0 and higher supports complex querying for enqueued jobs using WorkQuery objects. WorkQuery supports querying for work by a combination of its tag (s), state and …