Android એક કઠોર threading model ધરાવે છે જે main (UI) thread ની આસપાસ કેન્દ્રિત છે — જે UI ને સંભાળવું જોઈએ અને responsive રહેવું જોઈએ. Threading ને સમજવું, શા માટે કામ main thread માંથી બહાર જવું જોઈએ, અને tools (coroutines, અને ઐતિહાસિક રીતે threads/handlers) responsive apps માટે મહત્વપૂર્ણ છે.
The main thread rule
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
