Pro Android with Kotlin



Yüklə 4,6 Kb.
Pdf görüntüsü
səhifə42/231
tarix29.11.2023
ölçüsü4,6 Kb.
#138831
1   ...   38   39   40   41   42   43   44   45   ...   231
@de android telegram Pro Android with Kotlin Developing Modern Mobile

32
CHAPTER 4: Services
You should not use this context normally, only for special services that need to be active 
directly after the boot process.
Service Classes
Services must extend the following class or one of its subclasses:
android.app.Service
They must be declared inside the app’s 
AndroidManifest.xml
file, as described earlier.
The interface methods from 
android.app.Service
are described in the section “Intent 
Constituent Parts” in the online text companion.
Note that there are two ways to stop a service that was explicitly started via 
startService()
or 
startForeroundService
: the service stops itself by calling 
stopSelf()
or 
stopSelfResult()
or by calling 
stopService()
from outside.
Starting Services
A service can be explicitly started from any component that is a subclass of 
android.
content.Context
or has access to a 
Context
. This is the case for activities, other services, 
broadcast receivers, and content providers.
To explicitly start a service, you need an appropriate intent. We basically have two cases: 
first, if the service lives in the same app as the client (invoker) of the service, you can write 
the following for a foreground service as defined starting at Android 8.0 (API level 26):
val intent = Intent(this, TheService::class.java)
startService(intent)
for a normal service, or
val intent = Intent(this, TheService::class.java)
if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.O) {
startForegroundService(intent)
} else {
startService(intent)
}
So, we can directly refer to the service class. The 
TheService::class.java
notation might 
look strange at first glance if you are a new Kotlin developer; that is just the Kotlin way of 
providing Java classes as an argument. (For versions prior to Android 8.0 (API level 26), you 
start it the normal way.)



Yüklə 4,6 Kb.

Dostları ilə paylaş:
1   ...   38   39   40   41   42   43   44   45   ...   231




Verilənlər bazası müəlliflik hüququ ilə müdafiə olunur ©genderi.org 2024
rəhbərliyinə müraciət

    Ana səhifə