Android Tutorial (Kotlin) - 37 - IntentService HD

29.01.2018
A Service is an application component that can perform long-running operations in the background, and it does not provide a user interface. Additionally, a component can bind to a service to interact with it and even perform interprocess communication (IPC). For example, a service can handle network transactions, play music, perform file I/O, or interact with a content provider, all from the background. IntentService is a base class for Services that handle asynchronous requests (expressed as Intents) on demand. Clients send requests through startService(Intent) calls; the service is started as needed, handles each Intent, in turn, using a worker thread, and stops itself when it runs out of work. Source code Link: http://adfoc.us/17867966403412 Service Reference: http://adfoc.us/17867966388986 IntentService Reference: http://adfoc.us/17867966403411 Download Android Studio 3.0 Stable Release: http://adfoc.us/17867965697275

Похожие видео

Показать еще