Package-level declarations

Types

Link copied to clipboard
Drawable that draws border lines with given color, widths and path effect.
Link copied to clipboard

A comparable color drawable.

Link copied to clipboard
interface ComparableDrawable : Equivalence<ComparableDrawable>

Comparable Drawable allows drawables to be compared by explicitly implementing the Equivalence.isEquivalentTo. This allows drawables to be compared in a more meaningful way, instead of using Drawable.equals which only checks if the references are equal.

Link copied to clipboard
Comparable Drawable Wrapper delegates all calls to its wrapped Drawable.
Link copied to clipboard
open class ComparableGradientDrawable(orientation: GradientDrawable.Orientation = Orientation.TOP_BOTTOM, colors: IntArray? = null) : GradientDrawable, ComparableDrawable

A comparable gradient drawable.

Link copied to clipboard