Android प्रदर्शन अनुकूलन गर्नुमा UI thread को प्रतिक्रिया शील राख्नु, कुशल memory उपयोग (leaks बचाउनु), smooth rendering, कुशल lists, र bottlenecks खोज्न profiling समावेश गर्नु पर्छ। प्रदर्शनले सीधै user experience लाई असर गर्छ र Android उपकरणहरूको विविध दायरामा महत्वपूर्ण छ।
UI (main) thread को प्रतिक्रिया शील राख्नु
✓ NEVER block the main thread → do network/DB/heavy work OFF it (coroutines + Dispatchers.IO)
→ blocking causes jank or ANR ("App Not Responding") — a top issue
✓ Keep work in onCreate / onBind / on the main thread minimal and fast
