mirror of
https://github.com/facebook/react-native.git
synced 2025-11-01 09:14:26 +00:00
0ef5beee85
Summary: Support ScrollAway in ReactScrollView for Fabric/non-Fabric. Changelog: [Android][Added] Support for ScrollAway native nav bars added to ReactScrollView Reviewed By: mdvacca Differential Revision: D28308855 fbshipit-source-id: 9a922159ef50fb7c8e9c484a4b97ca57ab248496
64 lines
2.3 KiB
Java
64 lines
2.3 KiB
Java
/*
|
|
* Copyright (c) Facebook, Inc. and its affiliates.
|
|
*
|
|
* This source code is licensed under the MIT license found in the
|
|
* LICENSE file in the root directory of this source tree.
|
|
*/
|
|
|
|
package com.facebook.react.uimanager;
|
|
|
|
import android.graphics.Rect;
|
|
import android.view.View;
|
|
import android.view.ViewParent;
|
|
import javax.annotation.concurrent.NotThreadSafe;
|
|
|
|
/**
|
|
* Provides implementation of common tasks for view and it's view manager supporting property {@code
|
|
* removeClippedSubviews}.
|
|
*/
|
|
@NotThreadSafe
|
|
public class ReactClippingViewGroupHelper {
|
|
|
|
public static final String PROP_REMOVE_CLIPPED_SUBVIEWS = "removeClippedSubviews";
|
|
|
|
private static final Rect sHelperRect = new Rect();
|
|
|
|
/**
|
|
* Can be used by view that support {@code removeClippedSubviews} property to calculate area that
|
|
* given {@param view} should be clipped to based on the clipping rectangle of it's parent in case
|
|
* when parent is also set to clip it's children.
|
|
*
|
|
* @param view view that we want to calculate clipping rect for
|
|
* @param outputRect where the calculated rectangle will be written
|
|
*/
|
|
public static void calculateClippingRect(View view, Rect outputRect) {
|
|
ViewParent parent = view.getParent();
|
|
if (parent == null) {
|
|
outputRect.setEmpty();
|
|
return;
|
|
} else if (parent instanceof ReactClippingViewGroup) {
|
|
ReactClippingViewGroup clippingViewGroup = (ReactClippingViewGroup) parent;
|
|
if (clippingViewGroup.getRemoveClippedSubviews()) {
|
|
clippingViewGroup.getClippingRect(sHelperRect);
|
|
// Intersect the view with the parent's rectangle
|
|
// This will result in the overlap with coordinates in the parent space
|
|
if (!sHelperRect.intersect(
|
|
view.getLeft(),
|
|
view.getTop() + (int) view.getTranslationY(),
|
|
view.getRight(),
|
|
view.getBottom() + (int) view.getTranslationY())) {
|
|
outputRect.setEmpty();
|
|
return;
|
|
}
|
|
// Now we move the coordinates to the View's coordinate space
|
|
sHelperRect.offset(-view.getLeft(), -view.getTop());
|
|
sHelperRect.offset(-(int) view.getTranslationX(), -(int) view.getTranslationY());
|
|
sHelperRect.offset(view.getScrollX(), view.getScrollY());
|
|
outputRect.set(sHelperRect);
|
|
return;
|
|
}
|
|
}
|
|
view.getDrawingRect(outputRect);
|
|
}
|
|
}
|