mirror of
https://github.com/zhigang1992/react-native.git
synced 2026-04-03 22:48:25 +08:00
Reviewed By: AaaChiuuu Differential Revision: D5054307 fbshipit-source-id: af548077e9efabcdd9d86c3c06f6408a022762b8
820 lines
25 KiB
Java
820 lines
25 KiB
Java
/**
|
|
* Copyright (c) 2015-present, Facebook, Inc.
|
|
* All rights reserved.
|
|
*
|
|
* This source code is licensed under the BSD-style license found in the
|
|
* LICENSE file in the root directory of this source tree. An additional grant
|
|
* of patent rights can be found in the PATENTS file in the same directory.
|
|
*/
|
|
|
|
package com.facebook.react.uimanager;
|
|
|
|
import javax.annotation.Nullable;
|
|
|
|
import java.util.Arrays;
|
|
import java.util.ArrayList;
|
|
|
|
import com.facebook.yoga.YogaAlign;
|
|
import com.facebook.yoga.YogaConfig;
|
|
import com.facebook.yoga.YogaDisplay;
|
|
import com.facebook.yoga.YogaEdge;
|
|
import com.facebook.yoga.YogaConstants;
|
|
import com.facebook.yoga.YogaDirection;
|
|
import com.facebook.yoga.YogaFlexDirection;
|
|
import com.facebook.yoga.YogaJustify;
|
|
import com.facebook.yoga.YogaMeasureFunction;
|
|
import com.facebook.yoga.YogaNode;
|
|
import com.facebook.yoga.YogaOverflow;
|
|
import com.facebook.yoga.YogaPositionType;
|
|
import com.facebook.yoga.YogaValue;
|
|
import com.facebook.yoga.YogaWrap;
|
|
import com.facebook.infer.annotation.Assertions;
|
|
import com.facebook.react.uimanager.annotations.ReactPropertyHolder;
|
|
|
|
/**
|
|
* Base node class for representing virtual tree of React nodes. Shadow nodes are used primarily
|
|
* for layouting therefore it extends {@link YogaNode} to allow that. They also help with handling
|
|
* Common base subclass of {@link YogaNode} for all layout nodes for react-based view. It extends
|
|
* {@link YogaNode} by adding additional capabilities.
|
|
*
|
|
* Instances of this class receive property updates from JS via @{link UIManagerModule}. Subclasses
|
|
* may use {@link #updateShadowNode} to persist some of the updated fields in the node instance that
|
|
* corresponds to a particular view type.
|
|
*
|
|
* Subclasses of {@link ReactShadowNode} should be created only from {@link ViewManager} that
|
|
* corresponds to a certain type of native view. They will be updated and accessed only from JS
|
|
* thread. Subclasses of {@link ViewManager} may choose to use base class {@link ReactShadowNode} or
|
|
* custom subclass of it if necessary.
|
|
*
|
|
* The primary use-case for {@link ReactShadowNode} nodes is to calculate layouting. Although this
|
|
* might be extended. For some examples please refer to ARTGroupYogaNode or ReactTextYogaNode.
|
|
*
|
|
* This class allows for the native view hierarchy to not be an exact copy of the hierarchy received
|
|
* from JS by keeping track of both JS children (e.g. {@link #getChildCount()} and separately native
|
|
* children (e.g. {@link #getNativeChildCount()}). See {@link NativeViewHierarchyOptimizer} for more
|
|
* information.
|
|
*/
|
|
@ReactPropertyHolder
|
|
public class ReactShadowNode {
|
|
|
|
private int mReactTag;
|
|
private @Nullable String mViewClassName;
|
|
private @Nullable ReactShadowNode mRootNode;
|
|
private @Nullable ThemedReactContext mThemedContext;
|
|
private boolean mShouldNotifyOnLayout;
|
|
private boolean mNodeUpdated = true;
|
|
private @Nullable ArrayList<ReactShadowNode> mChildren;
|
|
private @Nullable ReactShadowNode mParent;
|
|
|
|
// layout-only nodes
|
|
private boolean mIsLayoutOnly;
|
|
private int mTotalNativeChildren = 0;
|
|
private @Nullable ReactShadowNode mNativeParent;
|
|
private @Nullable ArrayList<ReactShadowNode> mNativeChildren;
|
|
private int mScreenX;
|
|
private int mScreenY;
|
|
private int mScreenWidth;
|
|
private int mScreenHeight;
|
|
private final Spacing mDefaultPadding = new Spacing(0);
|
|
private final float[] mPadding = new float[Spacing.ALL + 1];
|
|
private final boolean[] mPaddingIsPercent = new boolean[Spacing.ALL + 1];
|
|
private final YogaNode mYogaNode;
|
|
private static YogaConfig sYogaConfig;
|
|
|
|
public ReactShadowNode() {
|
|
if (!isVirtual()) {
|
|
YogaNode node = YogaNodePool.get().acquire();
|
|
if (sYogaConfig == null) {
|
|
sYogaConfig = new YogaConfig();
|
|
sYogaConfig.setPointScaleFactor(0f);
|
|
sYogaConfig.setUseLegacyStretchBehaviour(true);
|
|
}
|
|
if (node == null) {
|
|
node = new YogaNode(sYogaConfig);
|
|
}
|
|
mYogaNode = node;
|
|
Arrays.fill(mPadding, YogaConstants.UNDEFINED);
|
|
} else {
|
|
mYogaNode = null;
|
|
}
|
|
}
|
|
|
|
/**
|
|
* Nodes that return {@code true} will be treated as "virtual" nodes. That is, nodes that are not
|
|
* mapped into native views (e.g. nested text node). By default this method returns {@code false}.
|
|
*/
|
|
public boolean isVirtual() {
|
|
return false;
|
|
}
|
|
|
|
/**
|
|
* Nodes that return {@code true} will be treated as a root view for the virtual nodes tree. It
|
|
* means that {@link NativeViewHierarchyManager} will not try to perform {@code manageChildren}
|
|
* operation on such views. Good example is {@code InputText} view that may have children
|
|
* {@code Text} nodes but this whole hierarchy will be mapped to a single android {@link EditText}
|
|
* view.
|
|
*/
|
|
public boolean isVirtualAnchor() {
|
|
return false;
|
|
}
|
|
|
|
public final String getViewClass() {
|
|
return Assertions.assertNotNull(mViewClassName);
|
|
}
|
|
|
|
public final boolean hasUpdates() {
|
|
return mNodeUpdated || hasNewLayout() || isDirty();
|
|
}
|
|
|
|
public final void markUpdateSeen() {
|
|
mNodeUpdated = false;
|
|
if (hasNewLayout()) {
|
|
markLayoutSeen();
|
|
}
|
|
}
|
|
|
|
public void markUpdated() {
|
|
if (mNodeUpdated) {
|
|
return;
|
|
}
|
|
mNodeUpdated = true;
|
|
ReactShadowNode parent = getParent();
|
|
if (parent != null) {
|
|
parent.markUpdated();
|
|
}
|
|
}
|
|
|
|
public final boolean hasUnseenUpdates() {
|
|
return mNodeUpdated;
|
|
}
|
|
|
|
public void dirty() {
|
|
if (!isVirtual()) {
|
|
mYogaNode.dirty();
|
|
}
|
|
}
|
|
|
|
public final boolean isDirty() {
|
|
return mYogaNode != null && mYogaNode.isDirty();
|
|
}
|
|
|
|
public void addChildAt(ReactShadowNode child, int i) {
|
|
if (child.mParent != null) {
|
|
throw new IllegalViewOperationException(
|
|
"Tried to add child that already has a parent! Remove it from its parent first.");
|
|
}
|
|
if (mChildren == null) {
|
|
mChildren = new ArrayList<ReactShadowNode>(4);
|
|
}
|
|
mChildren.add(i, child);
|
|
child.mParent = this;
|
|
|
|
// If a CSS node has measure defined, the layout algorithm will not visit its children. Even
|
|
// more, it asserts that you don't add children to nodes with measure functions.
|
|
if (mYogaNode != null && !mYogaNode.isMeasureDefined()) {
|
|
YogaNode childYogaNode = child.mYogaNode;
|
|
if (childYogaNode == null) {
|
|
throw new RuntimeException(
|
|
"Cannot add a child that doesn't have a YogaNode to a parent without a measure " +
|
|
"function! (Trying to add a '" + child.getClass().getSimpleName() + "' to a '" +
|
|
getClass().getSimpleName() + "')");
|
|
}
|
|
mYogaNode.addChildAt(childYogaNode, i);
|
|
}
|
|
markUpdated();
|
|
|
|
int increase = child.mIsLayoutOnly ? child.mTotalNativeChildren : 1;
|
|
mTotalNativeChildren += increase;
|
|
|
|
updateNativeChildrenCountInParent(increase);
|
|
}
|
|
|
|
public ReactShadowNode removeChildAt(int i) {
|
|
if (mChildren == null) {
|
|
throw new ArrayIndexOutOfBoundsException(
|
|
"Index " + i + " out of bounds: node has no children");
|
|
}
|
|
ReactShadowNode removed = mChildren.remove(i);
|
|
removed.mParent = null;
|
|
|
|
if (mYogaNode != null && !mYogaNode.isMeasureDefined()) {
|
|
mYogaNode.removeChildAt(i);
|
|
}
|
|
markUpdated();
|
|
|
|
int decrease = removed.mIsLayoutOnly ? removed.mTotalNativeChildren : 1;
|
|
mTotalNativeChildren -= decrease;
|
|
updateNativeChildrenCountInParent(-decrease);
|
|
return removed;
|
|
}
|
|
|
|
public final int getChildCount() {
|
|
return mChildren == null ? 0 : mChildren.size();
|
|
}
|
|
|
|
public final ReactShadowNode getChildAt(int i) {
|
|
if (mChildren == null) {
|
|
throw new ArrayIndexOutOfBoundsException(
|
|
"Index " + i + " out of bounds: node has no children");
|
|
}
|
|
return mChildren.get(i);
|
|
}
|
|
|
|
public final int indexOf(ReactShadowNode child) {
|
|
return mChildren == null ? -1 : mChildren.indexOf(child);
|
|
}
|
|
|
|
public void removeAndDisposeAllChildren() {
|
|
if (getChildCount() == 0) {
|
|
return;
|
|
}
|
|
|
|
int decrease = 0;
|
|
for (int i = getChildCount() - 1; i >= 0; i--) {
|
|
if (mYogaNode != null && !mYogaNode.isMeasureDefined()) {
|
|
mYogaNode.removeChildAt(i);
|
|
}
|
|
ReactShadowNode toRemove = getChildAt(i);
|
|
toRemove.mParent = null;
|
|
toRemove.dispose();
|
|
|
|
decrease += toRemove.mIsLayoutOnly ? toRemove.mTotalNativeChildren : 1;
|
|
}
|
|
Assertions.assertNotNull(mChildren).clear();
|
|
markUpdated();
|
|
|
|
mTotalNativeChildren -= decrease;
|
|
updateNativeChildrenCountInParent(-decrease);
|
|
}
|
|
|
|
private void updateNativeChildrenCountInParent(int delta) {
|
|
if (mIsLayoutOnly) {
|
|
ReactShadowNode parent = getParent();
|
|
while (parent != null) {
|
|
parent.mTotalNativeChildren += delta;
|
|
if (!parent.mIsLayoutOnly) {
|
|
break;
|
|
}
|
|
parent = parent.getParent();
|
|
}
|
|
}
|
|
}
|
|
|
|
/**
|
|
* This method will be called by {@link UIManagerModule} once per batch, before calculating
|
|
* layout. Will be only called for nodes that are marked as updated with {@link #markUpdated()}
|
|
* or require layouting (marked with {@link #dirty()}).
|
|
*/
|
|
public void onBeforeLayout() {
|
|
}
|
|
|
|
public final void updateProperties(ReactStylesDiffMap props) {
|
|
ViewManagerPropertyUpdater.updateProps(this, props);
|
|
onAfterUpdateTransaction();
|
|
}
|
|
|
|
public void onAfterUpdateTransaction() {
|
|
// no-op
|
|
}
|
|
|
|
/**
|
|
* Called after layout step at the end of the UI batch from {@link UIManagerModule}. May be used
|
|
* to enqueue additional ui operations for the native view. Will only be called on nodes marked
|
|
* as updated either with {@link #dirty()} or {@link #markUpdated()}.
|
|
*
|
|
* @param uiViewOperationQueue interface for enqueueing UI operations
|
|
*/
|
|
public void onCollectExtraUpdates(UIViewOperationQueue uiViewOperationQueue) {
|
|
}
|
|
|
|
/**
|
|
* @return true if layout (position or dimensions) changed, false otherwise.
|
|
*/
|
|
/* package */ boolean dispatchUpdates(
|
|
float absoluteX,
|
|
float absoluteY,
|
|
UIViewOperationQueue uiViewOperationQueue,
|
|
NativeViewHierarchyOptimizer nativeViewHierarchyOptimizer) {
|
|
if (mNodeUpdated) {
|
|
onCollectExtraUpdates(uiViewOperationQueue);
|
|
}
|
|
|
|
if (hasNewLayout()) {
|
|
float layoutX = getLayoutX();
|
|
float layoutY = getLayoutY();
|
|
int newAbsoluteLeft = Math.round(absoluteX + layoutX);
|
|
int newAbsoluteTop = Math.round(absoluteY + layoutY);
|
|
int newAbsoluteRight = Math.round(absoluteX + layoutX + getLayoutWidth());
|
|
int newAbsoluteBottom = Math.round(absoluteY + layoutY + getLayoutHeight());
|
|
|
|
int newScreenX = Math.round(layoutX);
|
|
int newScreenY = Math.round(layoutY);
|
|
int newScreenWidth = newAbsoluteRight - newAbsoluteLeft;
|
|
int newScreenHeight = newAbsoluteBottom - newAbsoluteTop;
|
|
|
|
boolean layoutHasChanged =
|
|
newScreenX != mScreenX ||
|
|
newScreenY != mScreenY ||
|
|
newScreenWidth != mScreenWidth ||
|
|
newScreenHeight != mScreenHeight;
|
|
|
|
mScreenX = newScreenX;
|
|
mScreenY = newScreenY;
|
|
mScreenWidth = newScreenWidth;
|
|
mScreenHeight = newScreenHeight;
|
|
|
|
if (layoutHasChanged) {
|
|
nativeViewHierarchyOptimizer.handleUpdateLayout(this);
|
|
}
|
|
|
|
return layoutHasChanged;
|
|
} else {
|
|
return false;
|
|
}
|
|
}
|
|
|
|
public final int getReactTag() {
|
|
return mReactTag;
|
|
}
|
|
|
|
public void setReactTag(int reactTag) {
|
|
mReactTag = reactTag;
|
|
}
|
|
|
|
public final ReactShadowNode getRootNode() {
|
|
return Assertions.assertNotNull(mRootNode);
|
|
}
|
|
|
|
/* package */ final void setRootNode(ReactShadowNode rootNode) {
|
|
mRootNode = rootNode;
|
|
}
|
|
|
|
/* package */ final void setViewClassName(String viewClassName) {
|
|
mViewClassName = viewClassName;
|
|
}
|
|
|
|
public final @Nullable ReactShadowNode getParent() {
|
|
return mParent;
|
|
}
|
|
|
|
/**
|
|
* Get the {@link ThemedReactContext} associated with this {@link ReactShadowNode}. This will
|
|
* never change during the lifetime of a {@link ReactShadowNode} instance, but different instances
|
|
* can have different contexts; don't cache any calculations based on theme values globally.
|
|
*/
|
|
public final ThemedReactContext getThemedContext() {
|
|
return Assertions.assertNotNull(mThemedContext);
|
|
}
|
|
|
|
public void setThemedContext(ThemedReactContext themedContext) {
|
|
mThemedContext = themedContext;
|
|
}
|
|
|
|
public final boolean shouldNotifyOnLayout() {
|
|
return mShouldNotifyOnLayout;
|
|
}
|
|
|
|
public void calculateLayout() {
|
|
mYogaNode.calculateLayout(YogaConstants.UNDEFINED, YogaConstants.UNDEFINED);
|
|
}
|
|
|
|
public final boolean hasNewLayout() {
|
|
return mYogaNode != null && mYogaNode.hasNewLayout();
|
|
}
|
|
|
|
public final void markLayoutSeen() {
|
|
if (mYogaNode != null) {
|
|
mYogaNode.markLayoutSeen();
|
|
}
|
|
}
|
|
|
|
/**
|
|
* Adds a child that the native view hierarchy will have at this index in the native view
|
|
* corresponding to this node.
|
|
*/
|
|
public final void addNativeChildAt(ReactShadowNode child, int nativeIndex) {
|
|
Assertions.assertCondition(!mIsLayoutOnly);
|
|
Assertions.assertCondition(!child.mIsLayoutOnly);
|
|
|
|
if (mNativeChildren == null) {
|
|
mNativeChildren = new ArrayList<>(4);
|
|
}
|
|
|
|
mNativeChildren.add(nativeIndex, child);
|
|
child.mNativeParent = this;
|
|
}
|
|
|
|
public final ReactShadowNode removeNativeChildAt(int i) {
|
|
Assertions.assertNotNull(mNativeChildren);
|
|
ReactShadowNode removed = mNativeChildren.remove(i);
|
|
removed.mNativeParent = null;
|
|
return removed;
|
|
}
|
|
|
|
public final void removeAllNativeChildren() {
|
|
if (mNativeChildren != null) {
|
|
for (int i = mNativeChildren.size() - 1; i >= 0; i--) {
|
|
mNativeChildren.get(i).mNativeParent = null;
|
|
}
|
|
mNativeChildren.clear();
|
|
}
|
|
}
|
|
|
|
public final int getNativeChildCount() {
|
|
return mNativeChildren == null ? 0 : mNativeChildren.size();
|
|
}
|
|
|
|
public final int indexOfNativeChild(ReactShadowNode nativeChild) {
|
|
Assertions.assertNotNull(mNativeChildren);
|
|
return mNativeChildren.indexOf(nativeChild);
|
|
}
|
|
|
|
public final @Nullable ReactShadowNode getNativeParent() {
|
|
return mNativeParent;
|
|
}
|
|
|
|
/**
|
|
* Sets whether this node only contributes to the layout of its children without doing any
|
|
* drawing or functionality itself.
|
|
*/
|
|
public final void setIsLayoutOnly(boolean isLayoutOnly) {
|
|
Assertions.assertCondition(getParent() == null, "Must remove from no opt parent first");
|
|
Assertions.assertCondition(mNativeParent == null, "Must remove from native parent first");
|
|
Assertions.assertCondition(getNativeChildCount() == 0, "Must remove all native children first");
|
|
mIsLayoutOnly = isLayoutOnly;
|
|
}
|
|
|
|
public final boolean isLayoutOnly() {
|
|
return mIsLayoutOnly;
|
|
}
|
|
|
|
public final int getTotalNativeChildren() {
|
|
return mTotalNativeChildren;
|
|
}
|
|
|
|
/**
|
|
* Returns the offset within the native children owned by all layout-only nodes in the subtree
|
|
* rooted at this node for the given child. Put another way, this returns the number of native
|
|
* nodes (nodes not optimized out of the native tree) that are a) to the left (visited before by a
|
|
* DFS) of the given child in the subtree rooted at this node and b) do not have a native parent
|
|
* in this subtree (which means that the given child will be a sibling of theirs in the final
|
|
* native hierarchy since they'll get attached to the same native parent).
|
|
*
|
|
* Basically, a view might have children that have been optimized away by
|
|
* {@link NativeViewHierarchyOptimizer}. Since those children will then add their native children
|
|
* to this view, we now have ranges of native children that correspond to single unoptimized
|
|
* children. The purpose of this method is to return the index within the native children that
|
|
* corresponds to the **start** of the native children that belong to the given child. Also, note
|
|
* that all of the children of a view might be optimized away, so this could return the same value
|
|
* for multiple different children.
|
|
*
|
|
* Example. Native children are represented by (N) where N is the no-opt child they came from. If
|
|
* no children are optimized away it'd look like this: (0) (1) (2) (3) ... (n)
|
|
*
|
|
* In case some children are optimized away, it might look like this:
|
|
* (0) (1) (1) (1) (3) (3) (4)
|
|
*
|
|
* In that case:
|
|
* getNativeOffsetForChild(Node 0) => 0
|
|
* getNativeOffsetForChild(Node 1) => 1
|
|
* getNativeOffsetForChild(Node 2) => 4
|
|
* getNativeOffsetForChild(Node 3) => 4
|
|
* getNativeOffsetForChild(Node 4) => 6
|
|
*/
|
|
public final int getNativeOffsetForChild(ReactShadowNode child) {
|
|
int index = 0;
|
|
boolean found = false;
|
|
for (int i = 0; i < getChildCount(); i++) {
|
|
ReactShadowNode current = getChildAt(i);
|
|
if (child == current) {
|
|
found = true;
|
|
break;
|
|
}
|
|
index += (current.mIsLayoutOnly ? current.getTotalNativeChildren() : 1);
|
|
}
|
|
if (!found) {
|
|
throw new RuntimeException("Child " + child.mReactTag + " was not a child of " + mReactTag);
|
|
}
|
|
return index;
|
|
}
|
|
|
|
public final float getLayoutX() {
|
|
return mYogaNode.getLayoutX();
|
|
}
|
|
|
|
public final float getLayoutY() {
|
|
return mYogaNode.getLayoutY();
|
|
}
|
|
|
|
public final float getLayoutWidth() {
|
|
return mYogaNode.getLayoutWidth();
|
|
}
|
|
|
|
public final float getLayoutHeight() {
|
|
return mYogaNode.getLayoutHeight();
|
|
}
|
|
|
|
/**
|
|
* @return the x position of the corresponding view on the screen, rounded to pixels
|
|
*/
|
|
public int getScreenX() {
|
|
return mScreenX;
|
|
}
|
|
|
|
/**
|
|
* @return the y position of the corresponding view on the screen, rounded to pixels
|
|
*/
|
|
public int getScreenY() {
|
|
return mScreenY;
|
|
}
|
|
|
|
/**
|
|
* @return width corrected for rounding to pixels.
|
|
*/
|
|
public int getScreenWidth() {
|
|
return mScreenWidth;
|
|
}
|
|
|
|
/**
|
|
* @return height corrected for rounding to pixels.
|
|
*/
|
|
public int getScreenHeight() {
|
|
return mScreenHeight;
|
|
}
|
|
|
|
public final YogaDirection getLayoutDirection() {
|
|
return mYogaNode.getLayoutDirection();
|
|
}
|
|
|
|
public void setLayoutDirection(YogaDirection direction) {
|
|
mYogaNode.setDirection(direction);
|
|
}
|
|
|
|
public final YogaValue getStyleWidth() {
|
|
return mYogaNode.getWidth();
|
|
}
|
|
|
|
public void setStyleWidth(float widthPx) {
|
|
mYogaNode.setWidth(widthPx);
|
|
}
|
|
|
|
public void setStyleWidthPercent(float percent) {
|
|
mYogaNode.setWidthPercent(percent);
|
|
}
|
|
|
|
public void setStyleWidthAuto() {
|
|
mYogaNode.setWidthAuto();
|
|
}
|
|
|
|
public void setStyleMinWidth(float widthPx) {
|
|
mYogaNode.setMinWidth(widthPx);
|
|
}
|
|
|
|
public void setStyleMinWidthPercent(float percent) {
|
|
mYogaNode.setMinWidthPercent(percent);
|
|
}
|
|
|
|
public void setStyleMaxWidth(float widthPx) {
|
|
mYogaNode.setMaxWidth(widthPx);
|
|
}
|
|
|
|
public void setStyleMaxWidthPercent(float percent) {
|
|
mYogaNode.setMaxWidthPercent(percent);
|
|
}
|
|
|
|
public final YogaValue getStyleHeight() {
|
|
return mYogaNode.getHeight();
|
|
}
|
|
|
|
public void setStyleHeight(float heightPx) {
|
|
mYogaNode.setHeight(heightPx);
|
|
}
|
|
|
|
public void setStyleHeightPercent(float percent) {
|
|
mYogaNode.setHeightPercent(percent);
|
|
}
|
|
|
|
public void setStyleHeightAuto() {
|
|
mYogaNode.setHeightAuto();
|
|
}
|
|
|
|
public void setStyleMinHeight(float widthPx) {
|
|
mYogaNode.setMinHeight(widthPx);
|
|
}
|
|
|
|
public void setStyleMinHeightPercent(float percent) {
|
|
mYogaNode.setMinHeightPercent(percent);
|
|
}
|
|
|
|
public void setStyleMaxHeight(float widthPx) {
|
|
mYogaNode.setMaxHeight(widthPx);
|
|
}
|
|
|
|
public void setStyleMaxHeightPercent(float percent) {
|
|
mYogaNode.setMaxHeightPercent(percent);
|
|
}
|
|
|
|
public void setFlex(float flex) {
|
|
mYogaNode.setFlex(flex);
|
|
}
|
|
|
|
public void setFlexGrow(float flexGrow) {
|
|
mYogaNode.setFlexGrow(flexGrow);
|
|
}
|
|
|
|
public void setFlexShrink(float flexShrink) {
|
|
mYogaNode.setFlexShrink(flexShrink);
|
|
}
|
|
|
|
public void setFlexBasis(float flexBasis) {
|
|
mYogaNode.setFlexBasis(flexBasis);
|
|
}
|
|
|
|
public void setFlexBasisAuto() {
|
|
mYogaNode.setFlexBasisAuto();
|
|
}
|
|
|
|
public void setFlexBasisPercent(float percent) {
|
|
mYogaNode.setFlexBasisPercent(percent);
|
|
}
|
|
|
|
public void setStyleAspectRatio(float aspectRatio) {
|
|
mYogaNode.setAspectRatio(aspectRatio);
|
|
}
|
|
|
|
public void setFlexDirection(YogaFlexDirection flexDirection) {
|
|
mYogaNode.setFlexDirection(flexDirection);
|
|
}
|
|
|
|
public void setFlexWrap(YogaWrap wrap) {
|
|
mYogaNode.setWrap(wrap);
|
|
}
|
|
|
|
public void setAlignSelf(YogaAlign alignSelf) {
|
|
mYogaNode.setAlignSelf(alignSelf);
|
|
}
|
|
|
|
public void setAlignItems(YogaAlign alignItems) {
|
|
mYogaNode.setAlignItems(alignItems);
|
|
}
|
|
|
|
public void setAlignContent(YogaAlign alignContent) {
|
|
mYogaNode.setAlignContent(alignContent);
|
|
}
|
|
|
|
public void setJustifyContent(YogaJustify justifyContent) {
|
|
mYogaNode.setJustifyContent(justifyContent);
|
|
}
|
|
|
|
public void setOverflow(YogaOverflow overflow) {
|
|
mYogaNode.setOverflow(overflow);
|
|
}
|
|
|
|
public void setDisplay(YogaDisplay display) {
|
|
mYogaNode.setDisplay(display);
|
|
}
|
|
|
|
public void setMargin(int spacingType, float margin) {
|
|
mYogaNode.setMargin(YogaEdge.fromInt(spacingType), margin);
|
|
}
|
|
|
|
public void setMarginPercent(int spacingType, float percent) {
|
|
mYogaNode.setMarginPercent(YogaEdge.fromInt(spacingType), percent);
|
|
}
|
|
|
|
public void setMarginAuto(int spacingType) {
|
|
mYogaNode.setMarginAuto(YogaEdge.fromInt(spacingType));
|
|
}
|
|
|
|
public final float getPadding(int spacingType) {
|
|
return mYogaNode.getLayoutPadding(YogaEdge.fromInt(spacingType));
|
|
}
|
|
|
|
public final YogaValue getStylePadding(int spacingType) {
|
|
return mYogaNode.getPadding(YogaEdge.fromInt(spacingType));
|
|
}
|
|
|
|
public void setDefaultPadding(int spacingType, float padding) {
|
|
mDefaultPadding.set(spacingType, padding);
|
|
updatePadding();
|
|
}
|
|
|
|
public void setPadding(int spacingType, float padding) {
|
|
mPadding[spacingType] = padding;
|
|
mPaddingIsPercent[spacingType] = false;
|
|
updatePadding();
|
|
}
|
|
|
|
public void setPaddingPercent(int spacingType, float percent) {
|
|
mPadding[spacingType] = percent;
|
|
mPaddingIsPercent[spacingType] = !YogaConstants.isUndefined(percent);
|
|
updatePadding();
|
|
}
|
|
|
|
private void updatePadding() {
|
|
for (int spacingType = Spacing.LEFT; spacingType <= Spacing.ALL; spacingType++) {
|
|
if (spacingType == Spacing.LEFT ||
|
|
spacingType == Spacing.RIGHT ||
|
|
spacingType == Spacing.START ||
|
|
spacingType == Spacing.END) {
|
|
if (YogaConstants.isUndefined(mPadding[spacingType]) &&
|
|
YogaConstants.isUndefined(mPadding[Spacing.HORIZONTAL]) &&
|
|
YogaConstants.isUndefined(mPadding[Spacing.ALL])) {
|
|
mYogaNode.setPadding(YogaEdge.fromInt(spacingType), mDefaultPadding.getRaw(spacingType));
|
|
continue;
|
|
}
|
|
} else if (spacingType == Spacing.TOP || spacingType == Spacing.BOTTOM) {
|
|
if (YogaConstants.isUndefined(mPadding[spacingType]) &&
|
|
YogaConstants.isUndefined(mPadding[Spacing.VERTICAL]) &&
|
|
YogaConstants.isUndefined(mPadding[Spacing.ALL])) {
|
|
mYogaNode.setPadding(YogaEdge.fromInt(spacingType), mDefaultPadding.getRaw(spacingType));
|
|
continue;
|
|
}
|
|
} else {
|
|
if (YogaConstants.isUndefined(mPadding[spacingType])) {
|
|
mYogaNode.setPadding(YogaEdge.fromInt(spacingType), mDefaultPadding.getRaw(spacingType));
|
|
continue;
|
|
}
|
|
}
|
|
|
|
if (mPaddingIsPercent[spacingType]) {
|
|
mYogaNode.setPaddingPercent(YogaEdge.fromInt(spacingType), mPadding[spacingType]);
|
|
} else {
|
|
mYogaNode.setPadding(YogaEdge.fromInt(spacingType), mPadding[spacingType]);
|
|
}
|
|
}
|
|
}
|
|
|
|
public void setBorder(int spacingType, float borderWidth) {
|
|
mYogaNode.setBorder(YogaEdge.fromInt(spacingType), borderWidth);
|
|
}
|
|
|
|
public void setPosition(int spacingType, float position) {
|
|
mYogaNode.setPosition(YogaEdge.fromInt(spacingType), position);
|
|
}
|
|
|
|
public void setPositionPercent(int spacingType, float percent) {
|
|
mYogaNode.setPositionPercent(YogaEdge.fromInt(spacingType), percent);
|
|
}
|
|
|
|
public void setPositionType(YogaPositionType positionType) {
|
|
mYogaNode.setPositionType(positionType);
|
|
}
|
|
|
|
public void setShouldNotifyOnLayout(boolean shouldNotifyOnLayout) {
|
|
mShouldNotifyOnLayout = shouldNotifyOnLayout;
|
|
}
|
|
|
|
public void setMeasureFunction(YogaMeasureFunction measureFunction) {
|
|
if ((measureFunction == null ^ mYogaNode.isMeasureDefined()) &&
|
|
getChildCount() != 0) {
|
|
throw new RuntimeException(
|
|
"Since a node with a measure function does not add any native yoga children, it's " +
|
|
"not safe to transition to/from having a measure function unless a node has no children");
|
|
}
|
|
mYogaNode.setMeasureFunction(measureFunction);
|
|
}
|
|
|
|
@Override
|
|
public String toString() {
|
|
StringBuilder sb = new StringBuilder();
|
|
toStringWithIndentation(sb, 0);
|
|
return sb.toString();
|
|
}
|
|
|
|
private void toStringWithIndentation(StringBuilder result, int level) {
|
|
// Spaces and tabs are dropped by IntelliJ logcat integration, so rely on __ instead.
|
|
for (int i = 0; i < level; ++i) {
|
|
result.append("__");
|
|
}
|
|
|
|
result
|
|
.append(getClass().getSimpleName())
|
|
.append(" ");
|
|
if (mYogaNode != null) {
|
|
result
|
|
.append(getLayoutWidth())
|
|
.append(",")
|
|
.append(getLayoutHeight());
|
|
} else {
|
|
result.append("(virtual node)");
|
|
}
|
|
result.append("\n");
|
|
|
|
if (getChildCount() == 0) {
|
|
return;
|
|
}
|
|
|
|
for (int i = 0; i < getChildCount(); i++) {
|
|
getChildAt(i).toStringWithIndentation(result, level + 1);
|
|
}
|
|
}
|
|
|
|
public void dispose() {
|
|
if (mYogaNode != null) {
|
|
mYogaNode.reset();
|
|
YogaNodePool.get().release(mYogaNode);
|
|
}
|
|
}
|
|
}
|