How Android Injects Views into an Activity: Inside setContentView and Window Mechanics
This article walks through Android’s Activity.setContentView implementation, tracing how the framework creates a PhoneWindow, initializes a DecorView, selects the appropriate layout resource, inflates it, and finally attaches the view hierarchy to the activity’s content container.
