Package tripleplay.ui

Interface Scroller.Clippable

Enclosing class:
Scroller

public static interface Scroller.Clippable
Interface for customizing how content is clipped and translated.
See Also:
  • Method Summary

    Modifier and Type
    Method
    Description
    void
    setPosition(float x, float y)
    Sets the translation of the content, based on scroll bar positions.
    void
    setViewArea(float width, float height)
    Sets the size of the area the content should clip to.
  • Method Details

    • setViewArea

      void setViewArea(float width, float height)
      Sets the size of the area the content should clip to. In the default clipping, this has no effect (it relies solely on the clipped group surrounding the content). This will always be called prior to setPosition.
    • setPosition

      void setPosition(float x, float y)
      Sets the translation of the content, based on scroll bar positions. Both numbers will be non-positive, up to the maximum position of the content such that its right or bottom edge aligns with the width or height of the view area, respectively. For the default clipping, this just sets the translation of the content's layer.