Package 

Interface ReactOverflowViewWithInset

  • All Implemented Interfaces:
    com.facebook.react.uimanager.ReactOverflowView

    
    public interface ReactOverflowViewWithInset
     implements ReactOverflowView
                        

    Interface that should be implemented by View subclasses that support {@code overflow} style and want to use the overflowInset values. This allows the overflow information to be used by TouchTargetHelper to determine if a View is touchable.

    • Method Summary

      Modifier and Type Method Description
      abstract Rect getOverflowInset() Get the overflow inset rect values which indicate the extensions to the boundaries of currentview that wraps all of its children views
      abstract void setOverflowInset(int left, int top, int right, int bottom) Set the overflow inset rect values which indicate the extensions to the boundaries of currentview that wraps all of its children views
      • Methods inherited from class com.facebook.react.uimanager.ReactOverflowView

        getOverflow
      • Methods inherited from class java.lang.Object

        clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
    • Method Detail

      • getOverflowInset

         abstract Rect getOverflowInset()

        Get the overflow inset rect values which indicate the extensions to the boundaries of currentview that wraps all of its children views

      • setOverflowInset

         abstract void setOverflowInset(int left, int top, int right, int bottom)

        Set the overflow inset rect values which indicate the extensions to the boundaries of currentview that wraps all of its children views