to top
Android APIs
Since: API Level 1
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)
abstract void removeView(View view)
abstract void updateViewLayout(View view, ViewGroup.LayoutParams params)

Public Methods

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

Since: API Level 1

public abstract void removeView (View view)

Since: API Level 1

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

Since: API Level 1