-
public interface IViewManagerWithChildren
-
-
Method Summary
Modifier and Type Method Description abstract boolean
needsCustomLayoutForChildren()
Returns whether this View type needs to handle laying out its own children instead of deferringto the standard css-layout algorithm. -
-
Method Detail
-
needsCustomLayoutForChildren
abstract boolean needsCustomLayoutForChildren()
Returns whether this View type needs to handle laying out its own children instead of deferringto the standard css-layout algorithm. Returns true for the layout to *not* be automaticallyinvoked. Instead onLayout will be invoked as normal and it is the View instance'sresponsibility to properly call layout on its children. Returns false for the default behaviorof automatically laying out children without going through the ViewGroup's onLayout method. Inthat case, onLayout for this View type must *not* call layout on its children.
-
-
-
-