Uzun süreli çalışanlar için destek

WorkManager, uzun süreli çalışanlar için yerleşik desteğe sahiptir. Böyle durumlarda WorkManager, işletim sistemine işlemin devam etmesi gerektiğini belirten bir sinyal sağlayabilir bu çalışma devam ederken mümkünse deneyin. Bu Çalışanlar 10'dan fazla dakika. Bu yeni özelliğin kullanım alanlarına örnek olarak toplu yüklemeler veya indirme (parçalanamayan), ML modelinde yerel olarak çürütme veya bir görev kullanıcı için önemli bir özellik olmalıdır.

WorkManager, arka planda bir ön plan hizmetini sizin adınıza yönetir ve çalıştırır yapılandırılabilir bir reklam öğesi gösterirken WorkRequest işlemini yürütme bildirimi görürsünüz.

ListenableWorker artık setForegroundAsync() API'yi desteklemektedir ve CoroutineWorker, askıya alınan setForeground() API'sini destekler. Bu API'ler, geliştiricilerin bu WorkRequest öğesinin önemli olduğunu belirtmesine olanak tanır ( veya uzun süreli olarak yürütülür.

WorkManager, 2.3.0-alpha03 ile başlayarak kendi oluşturduğunuz bir Çalışanları gerek kalmadan iptal etmek için kullanılabilecek PendingIntent createCancelPendingIntent() kullanarak yeni bir Android bileşeni kaydedin API'ye gidin. Bu yaklaşım özellikle setForegroundAsync() veya setForeground() API'leri Worker iptal etmek için bildirim işlemi.

Uzun süreli çalışanları oluşturma ve yönetme

Kodlama yönteminize bağlı olarak biraz farklı bir yaklaşım kullanacaksınız. Kotlin veya Java.

Kotlin

Kotlin geliştiricileri, CoroutineWorker etiketini kullanmalıdır. Bunun yerine setForegroundAsync(), bu yöntemin askıya alınan sürümünü kullanabilirsiniz. setForeground()

class DownloadWorker(context: Context, parameters: WorkerParameters) :
   CoroutineWorker(context, parameters) {

   private val notificationManager =
       context.getSystemService(Context.NOTIFICATION_SERVICE) as
               NotificationManager

   override suspend fun doWork(): Result {
       val inputUrl = inputData.getString(KEY_INPUT_URL)
                      ?: return Result.failure()
       val outputFile = inputData.getString(KEY_OUTPUT_FILE_NAME)
                      ?: return Result.failure()
       // Mark the Worker as important
       val progress = "Starting Download"
       setForeground(createForegroundInfo(progress))
       download(inputUrl, outputFile)
       return Result.success()
   }

   private fun download(inputUrl: String, outputFile: String) {
       // Downloads a file and updates bytes read
       // Calls setForeground() periodically when it needs to update
       // the ongoing Notification
   }
   // Creates an instance of ForegroundInfo which can be used to update the
   // ongoing notification.
   private fun createForegroundInfo(progress: String): ForegroundInfo {
       val id = applicationContext.getString(R.string.notification_channel_id)
       val title = applicationContext.getString(R.string.notification_title)
       val cancel = applicationContext.getString(R.string.cancel_download)
       // This PendingIntent can be used to cancel the worker
       val intent = WorkManager.getInstance(applicationContext)
               .createCancelPendingIntent(getId())

       // Create a Notification channel if necessary
       if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.O) {
           createChannel()
       }

       val notification = NotificationCompat.Builder(applicationContext, id)
           .setContentTitle(title)
           .setTicker(title)
           .setContentText(progress)
           .setSmallIcon(R.drawable.ic_work_notification)
           .setOngoing(true)
           // Add the cancel action to the notification which can
           // be used to cancel the worker
           .addAction(android.R.drawable.ic_delete, cancel, intent)
           .build()

       return ForegroundInfo(notificationId, notification)
   }

   @RequiresApi(Build.VERSION_CODES.O)
   private fun createChannel() {
       // Create a Notification channel
   }

   companion object {
       const val KEY_INPUT_URL = "KEY_INPUT_URL"
       const val KEY_OUTPUT_FILE_NAME = "KEY_OUTPUT_FILE_NAME"
   }
}

Java

ListenableWorker veya Worker kullanan geliştiriciler ListenableFuture<Void> döndüren setForegroundAsync() API. Siz devam eden bir Notification talimatını güncellemek için setForegroundAsync() numaralı telefonu da arayabilir.

Aşağıda, uzun süre çalışan ve dosya indiren bir çalışanın basit bir örneği verilmiştir. Bu Çalışan, ilerleme durumunu takip ederek devam eden Notification güncellemesinin durumunu gösterir. devam edebilir.

public class DownloadWorker extends Worker {
   private static final String KEY_INPUT_URL = "KEY_INPUT_URL";
   private static final String KEY_OUTPUT_FILE_NAME = "KEY_OUTPUT_FILE_NAME";

   private NotificationManager notificationManager;

   public DownloadWorker(
       @NonNull Context context,
       @NonNull WorkerParameters parameters) {
           super(context, parameters);
           notificationManager = (NotificationManager)
               context.getSystemService(NOTIFICATION_SERVICE);
   }

   @NonNull
   @Override
   public Result doWork() {
       Data inputData = getInputData();
       String inputUrl = inputData.getString(KEY_INPUT_URL);
       String outputFile = inputData.getString(KEY_OUTPUT_FILE_NAME);
       // Mark the Worker as important
       String progress = "Starting Download";
       setForegroundAsync(createForegroundInfo(progress));
       download(inputUrl, outputFile);
       return Result.success();
   }

   private void download(String inputUrl, String outputFile) {
       // Downloads a file and updates bytes read
       // Calls setForegroundAsync(createForegroundInfo(myProgress))
       // periodically when it needs to update the ongoing Notification.
   }

   @NonNull
   private ForegroundInfo createForegroundInfo(@NonNull String progress) {
       // Build a notification using bytesRead and contentLength

       Context context = getApplicationContext();
       String id = context.getString(R.string.notification_channel_id);
       String title = context.getString(R.string.notification_title);
       String cancel = context.getString(R.string.cancel_download);
       // This PendingIntent can be used to cancel the worker
       PendingIntent intent = WorkManager.getInstance(context)
               .createCancelPendingIntent(getId());

       if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.O) {
           createChannel();
       }

       Notification notification = new NotificationCompat.Builder(context, id)
               .setContentTitle(title)
               .setTicker(title)
               .setSmallIcon(R.drawable.ic_work_notification)
               .setOngoing(true)
               // Add the cancel action to the notification which can
               // be used to cancel the worker
               .addAction(android.R.drawable.ic_delete, cancel, intent)
               .build();

       return new ForegroundInfo(notificationId, notification);
   }

   @RequiresApi(Build.VERSION_CODES.O)
   private void createChannel() {
       // Create a Notification channel
   }
}

Uzun süre çalışan bir çalışana ön plan hizmet türü ekleme

Uygulamanız Android 14 (API düzeyi 34) veya sonraki sürümü hedefliyorsa bir ön plan hizmet türü olarak ayarlayın. Uygulamanız Android 10 (API düzeyi 29) veya sonraki bir sürümü hedefliyorsa ve bir konuma erişmesi gereken ve uzun süre boyunca çalışan location ön plan hizmeti türünü kullanıyor.

Uygulamanız Android 11 (API düzeyi 30) veya sonraki sürümleri hedefliyorsa ve kamera ya da mikrofona erişmesi gereken uzun süreli bir çalışana sahipse camera veya microphone ön planını beyan edin hizmet türlerini seçin.

Bu ön plan hizmet türlerini eklemek için şurada açıklanan adımları tamamlayın: bu bölümde bulabilirsiniz.

Uygulama manifestinde ön plan hizmeti türlerini bildirme

Çalışanın ön plan hizmeti türünü uygulamanızın manifest dosyasında belirtin. aşağıdaki örnekte, çalışanın konuma ve mikrofona erişmesi gerekiyor:

AndroidManifest.xml

<service
   android:name="androidx.work.impl.foreground.SystemForegroundService"
   android:foregroundServiceType="location|microphone"
   tools:node="merge" />

Çalışma zamanında ön plan hizmeti türlerini belirtme

setForeground() veya setForegroundAsync() numarasını aradığınızda, ön plan hizmet türü için geçerlidir.

KonumumveMikrofonİşçisi

Kotlin

private fun createForegroundInfo(progress: String): ForegroundInfo {
   // ...
   return ForegroundInfo(NOTIFICATION_ID, notification,
           FOREGROUND_SERVICE_TYPE_LOCATION or
FOREGROUND_SERVICE_TYPE_MICROPHONE) }

Java

@NonNull
private ForegroundInfo createForegroundInfo(@NonNull String progress) {
   // Build a notification...
   Notification notification = ...;
   return new ForegroundInfo(NOTIFICATION_ID, notification,
           FOREGROUND_SERVICE_TYPE_LOCATION | FOREGROUND_SERVICE_TYPE_MICROPHONE);
}