Sivaguru Jambulingam
Sivaguru Jambulingam

Reputation: 319

Window Manager in Android Architecture

I'm new to Android and am learning about Android architecture. I don't understand what WindowManager is supposed to do.

What does window manager do in Android?

Upvotes: 1

Views: 2202

Answers (1)

anon
anon

Reputation:

As Dianne Hackborn wrote on the android-framework mailing list:

The window manager creates surfaces for the application, and applications draw directly into those surfaces without going through the window manager. (source)

[T]he window manager is responsible for organizing the screen, applications don't get to decide that. The window manager allocates surfaces and decides where they go and how they are layered; it never touches their bits, which is up to the application. (source)

Upvotes: 5

Related Questions