service-android

There are 5 repositories under service-android topic.

  • Suvam-Dawn/IntentService-Android

    If Application has long running tasks, then may need to consider implementing services to run those log running operations in the background. Service like activity is a component in android. Services can be created by extending Service class and implementing required callback methods. Services created by extending Service class handle multiple requests concurrently and they run in the main thread. But if your requirement is that each service request be handled one at a time and in separate work thread, then the best way to create it is by extending IntentService class. IntentService class provides framework to take care of queuing requests, executing request one at time in worker thread and stopping service when not used. In this post, I will show how to implement IntentService.

    Language:Java2200
  • hoductrihcmut123/zvoice-recorder

    Voice recorder app (internship project)

    Language:Kotlin1100
  • nameisjayant/service-in-compose

    In this repository , we will talk about services in android with jetpack compose.

    Language:Kotlin120
  • juarezRoberto/android-broadcast-receiver

    app with broadcast receiver and services basic examples

    Language:Kotlin20
  • RamziJabali/aidl-client-service-demo-android

    Implementing AIDL as a service to share code between two different applications. Using deep links to launch service application and then deep linking back to client application to be able to use service.

    Language:Kotlin10