Please note that the contents of this offline web site may be out of date. To access the most recent documentation visit the online version .
Note that links that point to online resources are green in color and will open in a new window.
We would love it if you could give us feedback about this material by filling this form (You have to be online to fill it)
Android APIs
public interface

ViewManager

android.view.ViewManager
Known Indirect Subclasses

Class Overview

Interface to let you add and remove child views to an Activity. To get an instance of this class, call Context.getSystemService() .

Summary

Public Methods
abstract void addView ( View view, ViewGroup.LayoutParams params)
Assign the passed LayoutParams to the passed View and add the view to the window.
abstract void removeView ( View view)
abstract void updateViewLayout ( View view, ViewGroup.LayoutParams params)

Public Methods

public abstract void addView ( View view, ViewGroup.LayoutParams params)

Added in API level 1

Assign the passed LayoutParams to the passed View and add the view to the window.

Throws WindowManager.BadTokenException for certain programming errors, such as adding a second view to a window without removing the first view.

Throws WindowManager.InvalidDisplayException if the window is on a secondary Display and the specified display can't be found (see Presentation ).

Parameters
view The view to be added to this window.
params The LayoutParams to assign to view.

public abstract void removeView ( View view)

Added in API level 1

public abstract void updateViewLayout ( View view, ViewGroup.LayoutParams params)

Added in API level 1