FileDocCategorySizeDatePackage
WindowManager.javaAPI DocAndroid 1.5 API38930Wed May 06 22:41:56 BST 2009android.view

WindowManager

public interface WindowManager implements ViewManager
The interface that apps use to talk to the window manager.

Use Context.getSystemService(Context.WINDOW_SERVICE) to get one of these.

see
android.content.Context#getSystemService
see
android.content.Context#WINDOW_SERVICE

Fields Summary
Constructors Summary
Methods Summary
public DisplaygetDefaultDisplay()
Use this method to get the default Display object.

return
default Display object

public voidremoveViewImmediate(View view)
Special variation of {@link #removeView} that immediately invokes the given view hierarchy's {@link View#onDetachedFromWindow() View.onDetachedFromWindow()} methods before returning. This is not for normal applications; using it correctly requires great care.

param
view The view to be removed.