Android میں main (UI) thread کے گرد ایک سخت threading model ہے — جو UI کو سنبھالتا ہے اور responsive رہنا چاہیے۔ Threading کو سمجھنا، کام کو main thread سے کیوں ہٹانا ہے، اور tools (coroutines، اور ماضی میں threads/handlers) responsive apps کے لیے ضروری ہیں۔
main thread کا اصول
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
