-
- All Implemented Interfaces:
-
java.io.Serializable,kotlin.Comparable
public enum Scale extends Enum<Scale>
Represents a scaling policy. This determines how the image is scaled to fit into the Size returned by ImageRequest.sizeResolver.
Conceptually, you can think of this as ImageView.ScaleType without any knowledge of an image's gravity in the view.
-
-
Enum Constant Summary
Enum Constants Enum Constant Description FITFit the image to the view so that both dimensions (width and height) of the image will be equal to or less than the corresponding dimension of the view.
Generally, this is the default value for functions that accept a Scale.
FILLFill the image in the view such that both dimensions (width and height) of the image will be equal to or larger than the corresponding dimension of the view.
-
Method Summary
Modifier and Type Method Description final StringgetName()final IntegergetOrdinal()-
-
Method Detail
-
getOrdinal
final Integer getOrdinal()
-
-
-
-