Android ఒక కఠినమైన threading model ను కలిగి ఉంది, ఇది main (UI) thread కేంద్రీకృతమైనది — ఇది UI ను సంభాలించాలి మరియు ప్రతిస్పందనశీలంగా ఉండాలి. Threading, main thread నుండి work ను ఎందుకు తరలించాలి, మరియు tools (coroutines, మరియు చారిత్రికంగా threads/handlers) ను అర్థం చేసుకోవడం ప్రతిస్పందనశీల apps కోసం ముఖ్యమైనది.
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
