Android
android.view
public static interface

android.view.ViewGroup.OnHierarchyChangeListener

android.view.ViewGroup.OnHierarchyChangeListener

Interface definition for a callback to be invoked when the hierarchy within this view changed. The hierarchy changes whenever a child is added to or removed from this view.

Known Indirect Subclasses

Summary

Public Methods

          void  onChildViewAdded(View parent, View child)
Called when a new child is added to a parent view.
          void  onChildViewRemoved(View parent, View child)
Called when a child is removed from a parent view.

Details

Public Methods

public void onChildViewAdded(View parent, View child)

Called when a new child is added to a parent view.

Parameters

parent the view in which a child was added
child the new child view added in the hierarchy

public void onChildViewRemoved(View parent, View child)

Called when a child is removed from a parent view.

Parameters

parent the view from which the child was removed
child the child removed from the hierarchy
Copyright 2007 Google Inc. Build 0.9_r1-98467 - 14 Aug 2008 18:56