Een Service is een Android-component voor het uitvoeren van operations zonder UI — meestal langdurige werk op de achtergrond. Er zijn verschillende types (foreground, background, bound), elk geschikt voor verschillende behoeften, hoewel modern Android WorkManager voor veel gevallen prefereert.
Wat een Service is
A SERVICE runs operations WITHOUT a UI (not tied to a screen):
→ for work that should continue regardless of UI (or independent of any activity)
→ declared in the manifest; runs in the app's process (main thread by default — must
move heavy work off it!)
