Interface ContentFit


public interface ContentFit
  • Field Summary

    Fields
    Modifier and Type
    Field
    Description
    static final int
    Scale the content to fit the allocation,
    while taking its aspect ratio in consideration.
    static final int
    Cover the entire allocation, while taking
    the content aspect ratio in consideration.
    static final int
    Make the content fill the entire allocation,
    without taking its aspect ratio in consideration.
    static final int
    The content is scaled down to fit the
    allocation, if needed, otherwise its original size is used.
  • Field Details

    • FILL

      static final int FILL
      Make the content fill the entire allocation,
      without taking its aspect ratio in consideration. The resulting
      content will appear as stretched if its aspect ratio is different
      from the allocation aspect ratio.
      See Also:
    • CONTAIN

      static final int CONTAIN
      Scale the content to fit the allocation,
      while taking its aspect ratio in consideration. The resulting
      content will appear as letterboxed if its aspect ratio is different
      from the allocation aspect ratio.
      See Also:
    • COVER

      static final int COVER
      Cover the entire allocation, while taking
      the content aspect ratio in consideration. The resulting content
      will appear as clipped if its aspect ratio is different from the
      allocation aspect ratio.
      See Also:
    • SCALE_DOWN

      static final int SCALE_DOWN
      The content is scaled down to fit the
      allocation, if needed, otherwise its original size is used.
      See Also: