public class IncrementalMountUtils
extends java.lang.Object
| Modifier and Type | Class and Description |
|---|---|
static interface |
IncrementalMountUtils.WrapperView
A view that wraps a child view and that provides a wrapped view to be incrementally mounted.
|
| Constructor and Description |
|---|
IncrementalMountUtils() |
| Modifier and Type | Method and Description |
|---|---|
static void |
incrementallyMountLithoViews(View view)
Performs incremental mount on all
LithoViews within the given View. |
static void |
incrementallyMountLithoViews(View view,
boolean isManualPositionChange)
Performs incremental mount on all
LithoViews within the given View. |
static void |
performIncrementalMount(ViewGroup scrollingViewParent)
Performs incremental mount on the children views of the given ViewGroup.
|
public static void incrementallyMountLithoViews(View view)
LithoViews within the given View.public static void incrementallyMountLithoViews(View view,
boolean isManualPositionChange)
LithoViews within the given View.view - the view to processisManualPositionChange - true if the position change is due to a manual change, such as
setting Left / Top, or calling offsetTopAndBottompublic static void performIncrementalMount(ViewGroup scrollingViewParent)
scrollingViewParent - ViewGroup container of views that will be incrementally mounted.