Android possède un strict modèle de threading centré sur le thread principal (UI) — qui doit gérer l'interface utilisateur et rester réactif. Comprendre le threading, pourquoi le travail doit s'exécuter en dehors du thread principal, et les outils (coroutines, et historiquement threads/handlers) est important pour des applications réactives.
La règle du thread principal
Android has a single MAIN (UI) thread that:
→ handles ALL UI operations (drawing, events) — UI updates MUST happen on it
→ must stay RESPONSIVE — blocking it freezes the UI; >5s blocked = ANR (App Not Responding)
TWO key rules:
1. DON'T do long/blocking work on the main thread (network, DB, heavy compute) → move it off
2. DON'T update UI from a background thread → switch back to the main thread for UI
